TOrderTaskBo.java 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. package com.goafanti.order.bo;
  2. import java.math.BigDecimal;
  3. import com.goafanti.common.model.TOrderTask;
  4. import com.goafanti.common.utils.excel.Excel;
  5. import com.goafanti.order.enums.NewProjectStatus;
  6. public class TOrderTaskBo extends TOrderTask{
  7. /**
  8. *
  9. */
  10. private static final long serialVersionUID = 1L;
  11. private String contactsMobile;
  12. @Excel(name = "合同编号",sort = 9)
  13. private String cname;
  14. private Integer cSort;
  15. @Excel(name = "合同编号",sort = 1)
  16. private String contractNo;
  17. @Excel(name = "订单负责人",sort = 4)
  18. private String salesmanName;
  19. @Excel(name = "项目负责人",sort = 7)
  20. private String contacts;
  21. @Excel(name = "订单部门",sort = 5)
  22. private String depName;
  23. @Excel(name = "客户名称",sort = 3)
  24. private String userName;
  25. @Excel(name = "订单状态",sort = 6,readConverterExp = "0=待签单,1=签单待审,2=签单审核通过,3=签单审核拒绝,4=已结项,5=已驳回,6=已退单")
  26. private Integer orderStatus;
  27. private Integer type;
  28. private BigDecimal price;
  29. private BigDecimal appropriationRatio;
  30. private Integer patentType;
  31. private String patentTypeName;
  32. private Integer patentTransfer;
  33. private String email;
  34. private String name;
  35. @Excel(name = "项目状态",sort = 13)
  36. private String projectStatusName;
  37. public String getName() {
  38. return name;
  39. }
  40. public void setName(String name) {
  41. this.name = name;
  42. }
  43. public String getEmail() {
  44. return email;
  45. }
  46. public void setEmail(String email) {
  47. this.email = email;
  48. }
  49. public Integer getPatentTransfer() {
  50. return patentTransfer;
  51. }
  52. public void setPatentTransfer(Integer patentTransfer) {
  53. this.patentTransfer = patentTransfer;
  54. }
  55. public Integer getPatentType() {
  56. return patentType;
  57. }
  58. public void setPatentType(Integer patentType) {
  59. this.patentType = patentType;
  60. }
  61. public String getProjectStatusName() {
  62. return projectStatusName;
  63. }
  64. public void setProjectStatusName(String projectStatusName) {
  65. this.projectStatusName = projectStatusName;
  66. }
  67. public void setProjectStatus(Integer projectStatus) {
  68. super.setProjectStatus(projectStatus);
  69. this.projectStatusName=NewProjectStatus.getValueByCode(projectStatus);
  70. }
  71. public String getContractNo() {
  72. return contractNo;
  73. }
  74. public void setContractNo(String contractNo) {
  75. this.contractNo = contractNo;
  76. }
  77. public String getSalesmanName() {
  78. return salesmanName;
  79. }
  80. public void setSalesmanName(String salesmanName) {
  81. this.salesmanName = salesmanName;
  82. }
  83. public String getDepName() {
  84. return depName;
  85. }
  86. public void setDepName(String depName) {
  87. this.depName = depName;
  88. }
  89. public String getUserName() {
  90. return userName;
  91. }
  92. public void setUserName(String userName) {
  93. this.userName = userName;
  94. }
  95. public String getContacts() {
  96. return contacts;
  97. }
  98. public void setContacts(String contacts) {
  99. this.contacts = contacts;
  100. }
  101. public String getContactsMobile() {
  102. return contactsMobile;
  103. }
  104. public void setContactsMobile(String contactsMobile) {
  105. this.contactsMobile = contactsMobile;
  106. }
  107. public String getCname() {
  108. return cname;
  109. }
  110. public void setCname(String cname) {
  111. this.cname = cname;
  112. }
  113. public Integer getOrderStatus() {
  114. return orderStatus;
  115. }
  116. public void setOrderStatus(Integer orderStatus) {
  117. this.orderStatus = orderStatus;
  118. }
  119. public BigDecimal getPrice() {
  120. return price;
  121. }
  122. public void setPrice(BigDecimal price) {
  123. this.price = price;
  124. }
  125. public Integer getcSort() {
  126. return cSort;
  127. }
  128. public void setcSort(Integer cSort) {
  129. this.cSort = cSort;
  130. }
  131. public BigDecimal getAppropriationRatio() {
  132. return appropriationRatio;
  133. }
  134. public void setAppropriationRatio(BigDecimal appropriationRatio) {
  135. this.appropriationRatio = appropriationRatio;
  136. }
  137. public Integer getType() {
  138. return type;
  139. }
  140. public void setType(Integer type) {
  141. this.type = type;
  142. }
  143. public String getPatentTypeName() {
  144. return patentTypeName;
  145. }
  146. public void setPatentTypeName(String patentTypeName) {
  147. this.patentTypeName = patentTypeName;
  148. }
  149. }