TOrderTaskBo.java 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  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 String lastYear;
  43. private BigDecimal lastYearCapital;
  44. private BigDecimal lastYearIncome;
  45. public String getLastYear() {
  46. return lastYear;
  47. }
  48. public void setLastYear(String lastYear) {
  49. this.lastYear = lastYear;
  50. }
  51. public BigDecimal getLastYearCapital() {
  52. return lastYearCapital;
  53. }
  54. public void setLastYearCapital(BigDecimal lastYearCapital) {
  55. this.lastYearCapital = lastYearCapital;
  56. }
  57. public BigDecimal getLastYearIncome() {
  58. return lastYearIncome;
  59. }
  60. public void setLastYearIncome(BigDecimal lastYearIncome) {
  61. this.lastYearIncome = lastYearIncome;
  62. }
  63. private List<TOrderTaskListBo> splitList;
  64. public List<TOrderTaskListBo> getSplitList() {
  65. return splitList;
  66. }
  67. public void setSplitList(List<TOrderTaskListBo> splitList) {
  68. this.splitList = splitList;
  69. }
  70. public String getContractTerm() {
  71. return contractTerm;
  72. }
  73. public void setContractTerm(String contractTerm) {
  74. this.contractTerm = contractTerm;
  75. }
  76. public String getServiceLife() {
  77. return serviceLife;
  78. }
  79. public void setServiceLife(String serviceLife) {
  80. this.serviceLife = serviceLife;
  81. }
  82. public String getServiceYear() {
  83. return serviceYear;
  84. }
  85. public void setServiceYear(String serviceYear) {
  86. this.serviceYear = serviceYear;
  87. }
  88. public Integer getYearSum() {
  89. return yearSum;
  90. }
  91. public void setYearSum(Integer yearSum) {
  92. this.yearSum = yearSum;
  93. }
  94. public String getName() {
  95. return name;
  96. }
  97. public void setName(String name) {
  98. this.name = name;
  99. }
  100. public String getEmail() {
  101. return email;
  102. }
  103. public void setEmail(String email) {
  104. this.email = email;
  105. }
  106. public Integer getPatentTransfer() {
  107. return patentTransfer;
  108. }
  109. public void setPatentTransfer(Integer patentTransfer) {
  110. this.patentTransfer = patentTransfer;
  111. }
  112. public Integer getPatentType() {
  113. return patentType;
  114. }
  115. public void setPatentType(Integer patentType) {
  116. this.patentType = patentType;
  117. }
  118. public String getProjectStatusName() {
  119. return projectStatusName;
  120. }
  121. public void setProjectStatusName(String projectStatusName) {
  122. this.projectStatusName = projectStatusName;
  123. }
  124. public void setProjectStatus(Integer projectStatus) {
  125. super.setProjectStatus(projectStatus);
  126. this.projectStatusName=NewProjectStatus.getValueByCode(projectStatus);
  127. }
  128. public String getContractNo() {
  129. return contractNo;
  130. }
  131. public void setContractNo(String contractNo) {
  132. this.contractNo = contractNo;
  133. }
  134. public String getSalesmanName() {
  135. return salesmanName;
  136. }
  137. public void setSalesmanName(String salesmanName) {
  138. this.salesmanName = salesmanName;
  139. }
  140. public String getDepName() {
  141. return depName;
  142. }
  143. public void setDepName(String depName) {
  144. this.depName = depName;
  145. }
  146. public String getUserName() {
  147. return userName;
  148. }
  149. public void setUserName(String userName) {
  150. this.userName = userName;
  151. }
  152. public String getContacts() {
  153. return contacts;
  154. }
  155. public void setContacts(String contacts) {
  156. this.contacts = contacts;
  157. }
  158. public String getContactsMobile() {
  159. return contactsMobile;
  160. }
  161. public void setContactsMobile(String contactsMobile) {
  162. this.contactsMobile = contactsMobile;
  163. }
  164. public String getCname() {
  165. return cname;
  166. }
  167. public void setCname(String cname) {
  168. this.cname = cname;
  169. }
  170. public Integer getOrderStatus() {
  171. return orderStatus;
  172. }
  173. public void setOrderStatus(Integer orderStatus) {
  174. this.orderStatus = orderStatus;
  175. }
  176. public BigDecimal getPrice() {
  177. return price;
  178. }
  179. public void setPrice(BigDecimal price) {
  180. this.price = price;
  181. }
  182. public Integer getcSort() {
  183. return cSort;
  184. }
  185. public void setcSort(Integer cSort) {
  186. this.cSort = cSort;
  187. }
  188. public BigDecimal getAppropriationRatio() {
  189. return appropriationRatio;
  190. }
  191. public void setAppropriationRatio(BigDecimal appropriationRatio) {
  192. this.appropriationRatio = appropriationRatio;
  193. }
  194. public Integer getType() {
  195. return type;
  196. }
  197. public void setType(Integer type) {
  198. this.type = type;
  199. }
  200. public String getPatentTypeName() {
  201. return patentTypeName;
  202. }
  203. public void setPatentTypeName(String patentTypeName) {
  204. this.patentTypeName = patentTypeName;
  205. }
  206. }