?? ordersbean.java
字號:
package com.newer.bean;
public class OrdersBean {
private int orderID;
private String orderTitle;
private float originPrice ;
private float nowPrice ;
private String orderMemo;
private String orderDetails;
private String picURL;
private String orderAddTime;
public float getNowPrice() {
return nowPrice;
}
public void setNowPrice(float nowPrice) {
this.nowPrice = nowPrice;
}
public String getOrderAddTime() {
return orderAddTime;
}
public void setOrderAddTime(String orderAddTime) {
this.orderAddTime = orderAddTime;
}
public String getOrderDetails() {
return orderDetails;
}
public void setOrderDetails(String orderDetails) {
this.orderDetails = orderDetails;
}
public int getOrderID() {
return orderID;
}
public void setOrderID(int orderID) {
this.orderID = orderID;
}
public String getOrderMemo() {
return orderMemo;
}
public void setOrderMemo(String orderMemo) {
this.orderMemo = orderMemo;
}
public String getOrderTitle() {
return orderTitle;
}
public void setOrderTitle(String orderTitle) {
this.orderTitle = orderTitle;
}
public float getOriginPrice() {
return originPrice;
}
public void setOriginPrice(float originPrice) {
this.originPrice = originPrice;
}
public String getPicURL() {
return picURL;
}
public void setPicURL(String picURL) {
this.picURL = picURL;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -