package com.nanometer.smartlab.entity;
|
|
import com.nanometer.smartlab.entity.enumtype.ApplyStatus;
|
import com.nanometer.smartlab.entity.enumtype.ValidFlag;
|
|
import java.io.Serializable;
|
import java.sql.Timestamp;
|
|
/**
|
* Created by johnny on 17/11/23.
|
*/
|
public class OpeOrder implements Serializable {
|
|
private String id;
|
private String orderCode;
|
private String orderName;
|
private ApplyStatus status;
|
private Timestamp createTime;
|
private Timestamp updateTime;
|
private ValidFlag validFlag;
|
private String memo;
|
private String consigneeUserId;
|
private String orderUserId;
|
private Timestamp arrivalTime;
|
private String orderUserName;
|
private String consigneeUserName;
|
|
private String supplyId;
|
|
private String supplyName;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getOrderCode() {
|
return orderCode;
|
}
|
|
public void setOrderCode(String orderCode) {
|
this.orderCode = orderCode;
|
}
|
|
public String getOrderName() {
|
return orderName;
|
}
|
|
public void setOrderName(String orderName) {
|
this.orderName = orderName;
|
}
|
|
public ApplyStatus getStatus() {
|
return status;
|
}
|
|
public void setStatus(ApplyStatus status) {
|
this.status = status;
|
}
|
|
public Timestamp getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Timestamp createTime) {
|
this.createTime = createTime;
|
}
|
|
public Timestamp getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Timestamp updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
public ValidFlag getValidFlag() {
|
return validFlag;
|
}
|
|
public void setValidFlag(ValidFlag validFlag) {
|
this.validFlag = validFlag;
|
}
|
|
public String getMemo() {
|
return memo;
|
}
|
|
public void setMemo(String memo) {
|
this.memo = memo;
|
}
|
|
public String getConsigneeUserId() {
|
return consigneeUserId;
|
}
|
|
public void setConsigneeUserId(String consigneeUserId) {
|
this.consigneeUserId = consigneeUserId;
|
}
|
|
public String getOrderUserId() {
|
return orderUserId;
|
}
|
|
public void setOrderUserId(String orderUserId) {
|
this.orderUserId = orderUserId;
|
}
|
|
public Timestamp getArrivalTime() {
|
return arrivalTime;
|
}
|
|
public void setArrivalTime(Timestamp arrivalTime) {
|
this.arrivalTime = arrivalTime;
|
}
|
|
public String getOrderUserName() {
|
return orderUserName;
|
}
|
|
public void setOrderUserName(String orderUserName) {
|
this.orderUserName = orderUserName;
|
}
|
|
public String getConsigneeUserName() {
|
return consigneeUserName;
|
}
|
|
public void setConsigneeUserName(String consigneeUserName) {
|
this.consigneeUserName = consigneeUserName;
|
}
|
|
public String getSupplyId() {
|
return supplyId;
|
}
|
|
public void setSupplyId(String supplyId) {
|
this.supplyId = supplyId;
|
}
|
|
public String getSupplyName() {
|
return supplyName;
|
}
|
|
public void setSupplyName(String supplyName) {
|
this.supplyName = supplyName;
|
}
|
|
}
|