TOrderTaskBo.java 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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. @Excel(name = "项目状态",sort = 13)
  34. private String projectStatusName;
  35. public Integer getPatentTransfer() {
  36. return patentTransfer;
  37. }
  38. public void setPatentTransfer(Integer patentTransfer) {
  39. this.patentTransfer = patentTransfer;
  40. }
  41. public Integer getPatentType() {
  42. return patentType;
  43. }
  44. public void setPatentType(Integer patentType) {
  45. this.patentType = patentType;
  46. }
  47. public String getProjectStatusName() {
  48. return projectStatusName;
  49. }
  50. public void setProjectStatusName(String projectStatusName) {
  51. this.projectStatusName = projectStatusName;
  52. }
  53. public void setProjectStatus(Integer projectStatus) {
  54. super.setProjectStatus(projectStatus);
  55. this.projectStatusName=NewProjectStatus.getValueByCode(projectStatus);
  56. }
  57. public String getContractNo() {
  58. return contractNo;
  59. }
  60. public void setContractNo(String contractNo) {
  61. this.contractNo = contractNo;
  62. }
  63. public String getSalesmanName() {
  64. return salesmanName;
  65. }
  66. public void setSalesmanName(String salesmanName) {
  67. this.salesmanName = salesmanName;
  68. }
  69. public String getDepName() {
  70. return depName;
  71. }
  72. public void setDepName(String depName) {
  73. this.depName = depName;
  74. }
  75. public String getUserName() {
  76. return userName;
  77. }
  78. public void setUserName(String userName) {
  79. this.userName = userName;
  80. }
  81. public String getContacts() {
  82. return contacts;
  83. }
  84. public void setContacts(String contacts) {
  85. this.contacts = contacts;
  86. }
  87. public String getContactsMobile() {
  88. return contactsMobile;
  89. }
  90. public void setContactsMobile(String contactsMobile) {
  91. this.contactsMobile = contactsMobile;
  92. }
  93. public String getCname() {
  94. return cname;
  95. }
  96. public void setCname(String cname) {
  97. this.cname = cname;
  98. }
  99. public Integer getOrderStatus() {
  100. return orderStatus;
  101. }
  102. public void setOrderStatus(Integer orderStatus) {
  103. this.orderStatus = orderStatus;
  104. }
  105. public BigDecimal getPrice() {
  106. return price;
  107. }
  108. public void setPrice(BigDecimal price) {
  109. this.price = price;
  110. }
  111. public Integer getcSort() {
  112. return cSort;
  113. }
  114. public void setcSort(Integer cSort) {
  115. this.cSort = cSort;
  116. }
  117. public BigDecimal getAppropriationRatio() {
  118. return appropriationRatio;
  119. }
  120. public void setAppropriationRatio(BigDecimal appropriationRatio) {
  121. this.appropriationRatio = appropriationRatio;
  122. }
  123. public Integer getType() {
  124. return type;
  125. }
  126. public void setType(Integer type) {
  127. this.type = type;
  128. }
  129. public String getPatentTypeName() {
  130. return patentTypeName;
  131. }
  132. public void setPatentTypeName(String patentTypeName) {
  133. this.patentTypeName = patentTypeName;
  134. }
  135. }