package com.goafanti.order.bo; import java.math.BigDecimal; public class OutselectProjectSotp { private Long id; private String createTimes; private String province; private String contractNo; private String orderNo; private String userName; private String cname; private String projectName; private Integer commodityQuantity; private String serviceType; private String salesmanName; private String receiverName; private Integer status; private BigDecimal commodityPrice; private String reason; private String annexUrl; private Integer stopType; /** * 审核状态 0=发起,1=通过,2=拒绝 */ private Integer stopStatus; private Integer tid; private Integer projectStopStatus; private Integer projectStopType; public String getSalesmanName() { return salesmanName; } public void setSalesmanName(String salesmanName) { this.salesmanName = salesmanName; } public Integer getProjectStopType() { return projectStopType; } public void setProjectStopType(Integer projectStopType) { this.projectStopType = projectStopType; } public Integer getTid() { return tid; } public void setTid(Integer tid) { this.tid = tid; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getAnnexUrl() { return annexUrl; } public void setAnnexUrl(String annexUrl) { this.annexUrl = annexUrl; } public Integer getStopType() { return stopType; } public void setStopType(Integer stopType) { this.stopType = stopType; } public Integer getStopStatus() { return stopStatus; } public void setStopStatus(Integer stopStatus) { this.stopStatus = stopStatus; } public Integer getProjectStopStatus() { return projectStopStatus; } public void setProjectStopStatus(Integer projectStopStatus) { this.projectStopStatus = projectStopStatus; } public String getCreateTimes() { return createTimes; } public void setCreateTimes(String createTimes) { this.createTimes = createTimes; } public String getProvince() { return province; } public void setProvince(String province) { this.province = province; } public String getContractNo() { return contractNo; } public void setContractNo(String contractNo) { this.contractNo = contractNo; } public String getOrderNo() { return orderNo; } public void setOrderNo(String orderNo) { this.orderNo = orderNo; } public String getUserName() { return userName; } public void setUserName(String userName) { this.userName = userName; } public String getCname() { return cname; } public void setCname(String cname) { this.cname = cname; } public String getProjectName() { return projectName; } public void setProjectName(String projectName) { this.projectName = projectName; } public Integer getCommodityQuantity() { return commodityQuantity; } public void setCommodityQuantity(Integer commodityQuantity) { this.commodityQuantity = commodityQuantity; } public String getServiceType() { return serviceType; } public void setServiceType(String serviceType) { this.serviceType = serviceType; } public String getReceiverName() { return receiverName; } public void setReceiverName(String receiverName) { this.receiverName = receiverName; } public Integer getStatus() { return status; } public void setStatus(Integer status) { this.status = status; } public BigDecimal getCommodityPrice() { return commodityPrice; } public void setCommodityPrice(BigDecimal commodityPrice) { this.commodityPrice = commodityPrice; } public String getReason() { return reason; } public void setReason(String reason) { this.reason = reason; } }