| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- 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;
- }
- }
|