📄 ordertable.java
字号:
package com.xfaccp.form;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
import com.xfaccp.base.BaseForm;
/**
* OrderTable generated by MyEclipse Persistence Tools
*/
public class OrderTable extends BaseForm {
private String sellerName;
private Date orderTime;
private Integer orderState;
private String customerNo;
private Integer isGiven;
private Date requestTime;
private String remark;
private Set outputTables = new HashSet(0);
private Set accessorySellTables = new HashSet(0);
private Integer indexNo;
// Constructors
public Integer getIndexNo() {
return indexNo;
}
public void setIndexNo(Integer indexNo) {
this.indexNo = indexNo;
}
/** default constructor */
public OrderTable() {
}
/** full constructor */
public OrderTable(String sellerName, Date orderTime, Integer orderState,
String customerNo, Integer isGiven, Date requestTime,
String remark, Set outputTables, Set accessorySellTables) {
this.sellerName = sellerName;
this.orderTime = orderTime;
this.orderState = orderState;
this.customerNo = customerNo;
this.isGiven = isGiven;
this.requestTime = requestTime;
this.remark = remark;
this.outputTables = outputTables;
this.accessorySellTables = accessorySellTables;
}
// Property accessors
public String getSellerName() {
return this.sellerName;
}
public void setSellerName(String sellerName) {
this.sellerName = sellerName;
}
public Date getOrderTime() {
return this.orderTime;
}
public void setOrderTime(Date orderTime) {
this.orderTime = orderTime;
}
public Integer getOrderState() {
return this.orderState;
}
public void setOrderState(Integer orderState) {
this.orderState = orderState;
}
public String getCustomerNo() {
return this.customerNo;
}
public void setCustomerNo(String customerNo) {
this.customerNo = customerNo;
}
public Integer getIsGiven() {
return this.isGiven;
}
public void setIsGiven(Integer isGiven) {
this.isGiven = isGiven;
}
public Date getRequestTime() {
return this.requestTime;
}
public void setRequestTime(Date requestTime) {
this.requestTime = requestTime;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public Set getOutputTables() {
return this.outputTables;
}
public void setOutputTables(Set outputTables) {
this.outputTables = outputTables;
}
public Set getAccessorySellTables() {
return this.accessorySellTables;
}
public void setAccessorySellTables(Set accessorySellTables) {
this.accessorySellTables = accessorySellTables;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -