📄 orders.java
字号:
package entity;
import java.util.Date;
/**
* Orders generated by MyEclipse Persistence Tools
*/
public class Orders implements java.io.Serializable {
// Fields
private String ordersId;
private Customers customers;
private Date ordersDatetime;
private String ordersSendAddress;
private Integer ordersStatus;
private String goodsMsg;
private Integer goodsCount;
private Double goodsSumTotal;
private String year;
private String name;
private String condition;
// Constructors
/** default constructor */
public Orders() {
}
/** full constructor */
public Orders(Customers customers, Date ordersDatetime,
String ordersSendAddress, Integer ordersStatus, String goodsMsg,
Integer goodsCount, Double goodsSumTotal) {
this.customers = customers;
this.ordersDatetime = ordersDatetime;
this.ordersSendAddress = ordersSendAddress;
this.ordersStatus = ordersStatus;
this.goodsMsg = goodsMsg;
this.goodsCount = goodsCount;
this.goodsSumTotal = goodsSumTotal;
}
// Property accessors
public String getOrdersId() {
return this.ordersId;
}
public void setOrdersId(String ordersId) {
this.ordersId = ordersId;
}
public Customers getCustomers() {
return this.customers;
}
public void setCustomers(Customers customers) {
this.customers = customers;
}
public Date getOrdersDatetime() {
return this.ordersDatetime;
}
public void setOrdersDatetime(Date ordersDatetime) {
this.ordersDatetime = ordersDatetime;
}
public String getOrdersSendAddress() {
return this.ordersSendAddress;
}
public void setOrdersSendAddress(String ordersSendAddress) {
this.ordersSendAddress = ordersSendAddress;
}
public Integer getOrdersStatus() {
return this.ordersStatus;
}
public void setOrdersStatus(Integer ordersStatus) {
this.ordersStatus = ordersStatus;
}
public String getGoodsMsg() {
return this.goodsMsg;
}
public void setGoodsMsg(String goodsMsg) {
this.goodsMsg = goodsMsg;
}
public Integer getGoodsCount() {
return this.goodsCount;
}
public void setGoodsCount(Integer goodsCount) {
this.goodsCount = goodsCount;
}
public Double getGoodsSumTotal() {
return this.goodsSumTotal;
}
public void setGoodsSumTotal(Double goodsSumTotal) {
this.goodsSumTotal = goodsSumTotal;
}
public String getYear() {
return year;
}
public void setYear(String year) {
this.year = year;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getCondition() {
return condition;
}
public void setCondition(String condition) {
this.condition = condition;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -