TOrderTaskBo.java 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. package com.goafanti.order.bo;
  2. import java.math.BigDecimal;
  3. import java.util.List;
  4. import com.goafanti.common.model.TOrderTask;
  5. import com.goafanti.common.utils.excel.Excel;
  6. import com.goafanti.order.enums.NewProjectStatus;
  7. public class TOrderTaskBo extends TOrderTask{
  8. /**
  9. *
  10. */
  11. private static final long serialVersionUID = 1L;
  12. private String contactsMobile;
  13. @Excel(name = "合同编号",sort = 9)
  14. private String cname;
  15. private Integer cSort;
  16. @Excel(name = "合同编号",sort = 1)
  17. private String contractNo;
  18. @Excel(name = "订单负责人",sort = 4)
  19. private String salesmanName;
  20. @Excel(name = "项目负责人",sort = 7)
  21. private String contacts;
  22. @Excel(name = "订单部门",sort = 5)
  23. private String depName;
  24. @Excel(name = "客户名称",sort = 3)
  25. private String userName;
  26. @Excel(name = "订单状态",sort = 6,readConverterExp = "0=待签单,1=签单待审,2=签单审核通过,3=签单审核拒绝,4=已结项,5=已驳回,6=已退单")
  27. private Integer orderStatus;
  28. private Integer type;
  29. private BigDecimal price;
  30. private BigDecimal appropriationRatio;
  31. private Integer patentType;
  32. private String patentTypeName;
  33. private Integer patentTransfer;
  34. private String email;
  35. private String name;
  36. @Excel(name = "项目状态",sort = 13)
  37. private String projectStatusName;
  38. private String serviceLife;
  39. private String serviceYear;
  40. private String contractTerm;
  41. private Integer yearSum;
  42. private Integer stopStatus;
  43. private Integer stopType;
  44. private Integer projectStopStatus;
  45. private String lastYear;
  46. private BigDecimal lastYearCapital;
  47. private BigDecimal lastYearIncome;
  48. public Integer getStopType() {
  49. return stopType;
  50. }
  51. public void setStopType(Integer stopType) {
  52. this.stopType = stopType;
  53. }
  54. public Integer getProjectStopStatus() {
  55. return projectStopStatus;
  56. }
  57. public void setProjectStopStatus(Integer projectStopStatus) {
  58. this.projectStopStatus = projectStopStatus;
  59. }
  60. public Integer getStopStatus() {
  61. return stopStatus;
  62. }
  63. public void setStopStatus(Integer stopStatus) {
  64. this.stopStatus = stopStatus;
  65. }
  66. public String getLastYear() {
  67. return lastYear;
  68. }
  69. public void setLastYear(String lastYear) {
  70. this.lastYear = lastYear;
  71. }
  72. public BigDecimal getLastYearCapital() {
  73. return lastYearCapital;
  74. }
  75. public void setLastYearCapital(BigDecimal lastYearCapital) {
  76. this.lastYearCapital = lastYearCapital;
  77. }
  78. public BigDecimal getLastYearIncome() {
  79. return lastYearIncome;
  80. }
  81. public void setLastYearIncome(BigDecimal lastYearIncome) {
  82. this.lastYearIncome = lastYearIncome;
  83. }
  84. private List<TOrderTaskListBo> splitList;
  85. public List<TOrderTaskListBo> getSplitList() {
  86. return splitList;
  87. }
  88. public void setSplitList(List<TOrderTaskListBo> splitList) {
  89. this.splitList = splitList;
  90. }
  91. public String getContractTerm() {
  92. return contractTerm;
  93. }
  94. public void setContractTerm(String contractTerm) {
  95. this.contractTerm = contractTerm;
  96. }
  97. public String getServiceLife() {
  98. return serviceLife;
  99. }
  100. public void setServiceLife(String serviceLife) {
  101. this.serviceLife = serviceLife;
  102. }
  103. public String getServiceYear() {
  104. return serviceYear;
  105. }
  106. public void setServiceYear(String serviceYear) {
  107. this.serviceYear = serviceYear;
  108. }
  109. public Integer getYearSum() {
  110. return yearSum;
  111. }
  112. public void setYearSum(Integer yearSum) {
  113. this.yearSum = yearSum;
  114. }
  115. public String getName() {
  116. return name;
  117. }
  118. public void setName(String name) {
  119. this.name = name;
  120. }
  121. public String getEmail() {
  122. return email;
  123. }
  124. public void setEmail(String email) {
  125. this.email = email;
  126. }
  127. public Integer getPatentTransfer() {
  128. return patentTransfer;
  129. }
  130. public void setPatentTransfer(Integer patentTransfer) {
  131. this.patentTransfer = patentTransfer;
  132. }
  133. public Integer getPatentType() {
  134. return patentType;
  135. }
  136. public void setPatentType(Integer patentType) {
  137. this.patentType = patentType;
  138. }
  139. public String getProjectStatusName() {
  140. return projectStatusName;
  141. }
  142. public void setProjectStatusName(String projectStatusName) {
  143. this.projectStatusName = projectStatusName;
  144. }
  145. public void setProjectStatus(Integer projectStatus) {
  146. super.setProjectStatus(projectStatus);
  147. this.projectStatusName=NewProjectStatus.getValueByCode(projectStatus);
  148. }
  149. public String getContractNo() {
  150. return contractNo;
  151. }
  152. public void setContractNo(String contractNo) {
  153. this.contractNo = contractNo;
  154. }
  155. public String getSalesmanName() {
  156. return salesmanName;
  157. }
  158. public void setSalesmanName(String salesmanName) {
  159. this.salesmanName = salesmanName;
  160. }
  161. public String getDepName() {
  162. return depName;
  163. }
  164. public void setDepName(String depName) {
  165. this.depName = depName;
  166. }
  167. public String getUserName() {
  168. return userName;
  169. }
  170. public void setUserName(String userName) {
  171. this.userName = userName;
  172. }
  173. public String getContacts() {
  174. return contacts;
  175. }
  176. public void setContacts(String contacts) {
  177. this.contacts = contacts;
  178. }
  179. public String getContactsMobile() {
  180. return contactsMobile;
  181. }
  182. public void setContactsMobile(String contactsMobile) {
  183. this.contactsMobile = contactsMobile;
  184. }
  185. public String getCname() {
  186. return cname;
  187. }
  188. public void setCname(String cname) {
  189. this.cname = cname;
  190. }
  191. public Integer getOrderStatus() {
  192. return orderStatus;
  193. }
  194. public void setOrderStatus(Integer orderStatus) {
  195. this.orderStatus = orderStatus;
  196. }
  197. public BigDecimal getPrice() {
  198. return price;
  199. }
  200. public void setPrice(BigDecimal price) {
  201. this.price = price;
  202. }
  203. public Integer getcSort() {
  204. return cSort;
  205. }
  206. public void setcSort(Integer cSort) {
  207. this.cSort = cSort;
  208. }
  209. public BigDecimal getAppropriationRatio() {
  210. return appropriationRatio;
  211. }
  212. public void setAppropriationRatio(BigDecimal appropriationRatio) {
  213. this.appropriationRatio = appropriationRatio;
  214. }
  215. public Integer getType() {
  216. return type;
  217. }
  218. public void setType(Integer type) {
  219. this.type = type;
  220. }
  221. public String getPatentTypeName() {
  222. return patentTypeName;
  223. }
  224. public void setPatentTypeName(String patentTypeName) {
  225. this.patentTypeName = patentTypeName;
  226. }
  227. }