OutselectProjectSotp.java 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. package com.goafanti.order.bo;
  2. import java.math.BigDecimal;
  3. public class OutselectProjectSotp {
  4. private Long id;
  5. private String createTimes;
  6. private String province;
  7. private String contractNo;
  8. private String orderNo;
  9. private String userName;
  10. private String cname;
  11. private String projectName;
  12. private Integer commodityQuantity;
  13. private String serviceType;
  14. private String salesmanName;
  15. private String receiverName;
  16. private Integer status;
  17. private BigDecimal commodityPrice;
  18. private String reason;
  19. private String annexUrl;
  20. private Integer stopType;
  21. /**
  22. * 审核状态 0=发起,1=通过,2=拒绝
  23. */
  24. private Integer stopStatus;
  25. private Integer tid;
  26. private Integer projectStopStatus;
  27. private Integer projectStopType;
  28. public String getSalesmanName() {
  29. return salesmanName;
  30. }
  31. public void setSalesmanName(String salesmanName) {
  32. this.salesmanName = salesmanName;
  33. }
  34. public Integer getProjectStopType() {
  35. return projectStopType;
  36. }
  37. public void setProjectStopType(Integer projectStopType) {
  38. this.projectStopType = projectStopType;
  39. }
  40. public Integer getTid() {
  41. return tid;
  42. }
  43. public void setTid(Integer tid) {
  44. this.tid = tid;
  45. }
  46. public Long getId() {
  47. return id;
  48. }
  49. public void setId(Long id) {
  50. this.id = id;
  51. }
  52. public String getAnnexUrl() {
  53. return annexUrl;
  54. }
  55. public void setAnnexUrl(String annexUrl) {
  56. this.annexUrl = annexUrl;
  57. }
  58. public Integer getStopType() {
  59. return stopType;
  60. }
  61. public void setStopType(Integer stopType) {
  62. this.stopType = stopType;
  63. }
  64. public Integer getStopStatus() {
  65. return stopStatus;
  66. }
  67. public void setStopStatus(Integer stopStatus) {
  68. this.stopStatus = stopStatus;
  69. }
  70. public Integer getProjectStopStatus() {
  71. return projectStopStatus;
  72. }
  73. public void setProjectStopStatus(Integer projectStopStatus) {
  74. this.projectStopStatus = projectStopStatus;
  75. }
  76. public String getCreateTimes() {
  77. return createTimes;
  78. }
  79. public void setCreateTimes(String createTimes) {
  80. this.createTimes = createTimes;
  81. }
  82. public String getProvince() {
  83. return province;
  84. }
  85. public void setProvince(String province) {
  86. this.province = province;
  87. }
  88. public String getContractNo() {
  89. return contractNo;
  90. }
  91. public void setContractNo(String contractNo) {
  92. this.contractNo = contractNo;
  93. }
  94. public String getOrderNo() {
  95. return orderNo;
  96. }
  97. public void setOrderNo(String orderNo) {
  98. this.orderNo = orderNo;
  99. }
  100. public String getUserName() {
  101. return userName;
  102. }
  103. public void setUserName(String userName) {
  104. this.userName = userName;
  105. }
  106. public String getCname() {
  107. return cname;
  108. }
  109. public void setCname(String cname) {
  110. this.cname = cname;
  111. }
  112. public String getProjectName() {
  113. return projectName;
  114. }
  115. public void setProjectName(String projectName) {
  116. this.projectName = projectName;
  117. }
  118. public Integer getCommodityQuantity() {
  119. return commodityQuantity;
  120. }
  121. public void setCommodityQuantity(Integer commodityQuantity) {
  122. this.commodityQuantity = commodityQuantity;
  123. }
  124. public String getServiceType() {
  125. return serviceType;
  126. }
  127. public void setServiceType(String serviceType) {
  128. this.serviceType = serviceType;
  129. }
  130. public String getReceiverName() {
  131. return receiverName;
  132. }
  133. public void setReceiverName(String receiverName) {
  134. this.receiverName = receiverName;
  135. }
  136. public Integer getStatus() {
  137. return status;
  138. }
  139. public void setStatus(Integer status) {
  140. this.status = status;
  141. }
  142. public BigDecimal getCommodityPrice() {
  143. return commodityPrice;
  144. }
  145. public void setCommodityPrice(BigDecimal commodityPrice) {
  146. this.commodityPrice = commodityPrice;
  147. }
  148. public String getReason() {
  149. return reason;
  150. }
  151. public void setReason(String reason) {
  152. this.reason = reason;
  153. }
  154. }