📄 f005d90b872d001d197ee5d5bdcefda6
字号:
/**
*
*/
package com.qrsx.qrsxcrm.model;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
/**
* 订单实体对象
* @author Administrator
*
*/
public class Order
{
private String id; //主键
private String orderId; //订单编号
private User user; //订单创建者(多个订单对应一个创建者)
private Date createDate; //创建日期
private Client client; //订单所对应的客户(一对一)
private Date payDate; //付款日期
private Integer state; //订单状态
private Employee employee; //订单负责人(一对一)
private String remark;
private Set lists = new HashSet(); //订单明细
private String userId;
private String clientId;
private String employeeId;
/**
* @return the client
*/
public Client getClient() {
return client;
}
/**
* @param client the client to set
*/
public void setClient(Client client) {
this.client = client;
}
/**
* @return the createDate
*/
public Date getCreateDate() {
return createDate;
}
/**
* @param createDate the createDate to set
*/
public void setCreateDate(Date createDate) {
this.createDate = createDate;
}
/**
* @return the employee
*/
public Employee getEmployee() {
return employee;
}
/**
* @param employee the employee to set
*/
public void setEmployee(Employee employee) {
this.employee = employee;
}
/**
* @return the id
*/
public String getId() {
return id;
}
/**
* @param id the id to set
*/
public void setId(String id) {
this.id = id;
}
/**
* @return the orderId
*/
public String getOrderId() {
return orderId;
}
/**
* @param orderId the orderId to set
*/
public void setOrderId(String orderId) {
this.orderId = orderId;
}
/**
* @return the payDate
*/
public Date getPayDate() {
return payDate;
}
/**
* @param payDate the payDate to set
*/
public void setPayDate(Date payDate) {
this.payDate = payDate;
}
/**
* @return the state
*/
public Integer getState() {
return state;
}
/**
* @param state the state to set
*/
public void setState(Integer state) {
this.state = state;
}
/**
* @return the user
*/
public User getUser() {
return user;
}
/**
* @param user the user to set
*/
public void setUser(User user) {
this.user = user;
}
/**
* @return the lists
*/
public Set getLists() {
return lists;
}
/**
* @param lists the lists to set
*/
public void setLists(Set lists) {
this.lists = lists;
}
/**
* @return the clientId
*/
public String getClientId() {
return clientId;
}
/**
* @param clientId the clientId to set
*/
public void setClientId(String clientId) {
this.clientId = clientId;
}
/**
* @return the employeeId
*/
public String getEmployeeId() {
return employeeId;
}
/**
* @param employeeId the employeeId to set
*/
public void setEmployeeId(String employeeId) {
this.employeeId = employeeId;
}
/**
* @return the userId
*/
public String getUserId() {
return userId;
}
/**
* @param userId the userId to set
*/
public void setUserId(String userId) {
this.userId = userId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -