package com.nanometer.smartlab.entity;
|
|
import java.io.Serializable;
|
import java.sql.Timestamp;
|
import java.util.List;
|
|
import com.nanometer.smartlab.entity.enumtype.ApplyStatus;
|
|
@SuppressWarnings("serial")
|
public class SupplierOrder implements Serializable {
|
@Override
|
public String toString() {
|
final StringBuilder sb = new StringBuilder("SupplierOrder{");
|
sb.append("beforeApproveUserId='").append(beforeApproveUserId).append('\'');
|
sb.append(", firName='").append(firName).append('\'');
|
sb.append(", firstUser='").append(firstUser).append('\'');
|
sb.append(", approveUserName='").append(approveUserName).append('\'');
|
sb.append(", secondUserName='").append(secondUserName).append('\'');
|
sb.append('}');
|
return sb.toString();
|
}
|
|
private String beforeApproveUserId;
|
private String firName;
|
private String firstUser;
|
private String first;
|
private String second;
|
|
public String getBeforeApproveUserId() {
|
return beforeApproveUserId;
|
}
|
|
public void setBeforeApproveUserId(String beforeApproveUserId) {
|
this.beforeApproveUserId = beforeApproveUserId;
|
}
|
|
public String getFirName() {
|
return firName;
|
}
|
|
public void setFirName(String firName) {
|
this.firName = firName;
|
}
|
|
public String getFirstUser() {
|
return firstUser;
|
}
|
|
public void setFirstUser(String firstUser) {
|
this.firstUser = firstUser;
|
}
|
|
public String getFirst() {
|
return first;
|
}
|
|
public void setFirst(String first) {
|
this.first = first;
|
}
|
|
public String getSecond() {
|
return second;
|
}
|
|
public void setSecond(String second) {
|
this.second = second;
|
}
|
|
private String id;
|
|
private ApplyStatus status;
|
|
private String orderCode;
|
|
private String approveUserName;
|
|
private String secondUserName;
|
|
private String orderUserName;
|
|
private Timestamp createTime;
|
|
private List<String> applyIds;
|
|
private String ids;
|
|
private int destoryFlag;
|
|
public int getDestoryFlag(){
|
return destoryFlag;
|
}
|
public void setDestoryFlag(int destoryFlag){
|
this.destoryFlag=destoryFlag;
|
}
|
public List<String> getApplyIds() {
|
return applyIds;
|
}
|
|
public void setApplyIds(List<String> applyIds) {
|
this.applyIds = applyIds;
|
}
|
|
private Double totalPrice;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public ApplyStatus getStatus() {
|
return status;
|
}
|
|
public void setStatus(ApplyStatus status) {
|
this.status = status;
|
}
|
|
public String getOrderCode() {
|
return orderCode;
|
}
|
|
public void setOrderCode(String orderCode) {
|
this.orderCode = orderCode;
|
}
|
|
public String getApproveUserName() {
|
return approveUserName;
|
}
|
|
public void setApproveUserName(String approveUserName) {
|
this.approveUserName = approveUserName;
|
}
|
|
public String getSecondUserName() {
|
return secondUserName;
|
}
|
|
public void setSecondUserName(String secondUserName) {
|
this.secondUserName = secondUserName;
|
}
|
|
public String getOrderUserName() {
|
return orderUserName;
|
}
|
|
public void setOrderUserName(String orderUserName) {
|
this.orderUserName = orderUserName;
|
}
|
|
public Timestamp getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Timestamp createTime) {
|
this.createTime = createTime;
|
}
|
|
public Double getTotalPrice() {
|
return totalPrice;
|
}
|
|
public void setTotalPrice(Double totalPrice) {
|
this.totalPrice = totalPrice;
|
}
|
|
public String getIds() {
|
return ids;
|
}
|
|
public void setIds(String ids) {
|
this.ids = ids;
|
}
|
}
|