TaskListBo.java 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. package com.goafanti.techproject.bo;
  2. public class TaskListBo{
  3. private String taskId;
  4. private String technicianName;
  5. private String technicianMobile;
  6. private String taskDistributionTimes;
  7. private String taskNo;
  8. private Integer taskStatus;
  9. private String taskComment;
  10. private Integer deleteSign;
  11. private String projectNo;
  12. private String commodityName;
  13. private Integer commodityQuantity;
  14. private String categoryName;
  15. private String categoryId;
  16. private Integer status;
  17. private Integer deletedSign;
  18. private String buyerName;
  19. private String taskReceiverName;
  20. private Integer publishStatus;
  21. private String salesmanName;
  22. public String getTaskId() {
  23. return taskId;
  24. }
  25. public void setTaskId(String taskId) {
  26. this.taskId = taskId;
  27. }
  28. public String getTechnicianName() {
  29. return technicianName;
  30. }
  31. public void setTechnicianName(String technicianName) {
  32. this.technicianName = technicianName;
  33. }
  34. public String getTaskDistributionTimes() {
  35. return taskDistributionTimes;
  36. }
  37. public void setTaskDistributionTimes(String taskDistributionTimes) {
  38. this.taskDistributionTimes = taskDistributionTimes;
  39. }
  40. public String getTaskNo() {
  41. return taskNo;
  42. }
  43. public void setTaskNo(String taskNo) {
  44. this.taskNo = taskNo;
  45. }
  46. public Integer getTaskStatus() {
  47. return taskStatus;
  48. }
  49. public void setTaskStatus(Integer taskStatus) {
  50. this.taskStatus = taskStatus;
  51. }
  52. public String getTaskComment() {
  53. return taskComment;
  54. }
  55. public void setTaskComment(String taskComment) {
  56. this.taskComment = taskComment;
  57. }
  58. public Integer getDeleteSign() {
  59. return deleteSign;
  60. }
  61. public void setDeleteSign(Integer deleteSign) {
  62. this.deleteSign = deleteSign;
  63. }
  64. public String getProjectNo() {
  65. return projectNo;
  66. }
  67. public void setProjectNo(String projectNo) {
  68. this.projectNo = projectNo;
  69. }
  70. public String getCommodityName() {
  71. return commodityName;
  72. }
  73. public void setCommodityName(String commodityName) {
  74. this.commodityName = commodityName;
  75. }
  76. public Integer getCommodityQuantity() {
  77. return commodityQuantity;
  78. }
  79. public void setCommodityQuantity(Integer commodityQuantity) {
  80. this.commodityQuantity = commodityQuantity;
  81. }
  82. public String getCategoryName() {
  83. return categoryName;
  84. }
  85. public void setCategoryName(String categoryName) {
  86. this.categoryName = categoryName;
  87. }
  88. public String getCategoryId() {
  89. return categoryId;
  90. }
  91. public void setCategoryId(String categoryId) {
  92. this.categoryId = categoryId;
  93. }
  94. public Integer getStatus() {
  95. return status;
  96. }
  97. public void setStatus(Integer status) {
  98. this.status = status;
  99. }
  100. public Integer getDeletedSign() {
  101. return deletedSign;
  102. }
  103. public void setDeletedSign(Integer deletedSign) {
  104. this.deletedSign = deletedSign;
  105. }
  106. public String getBuyerName() {
  107. return buyerName;
  108. }
  109. public void setBuyerName(String buyerName) {
  110. this.buyerName = buyerName;
  111. }
  112. public String getTaskReceiverName() {
  113. return taskReceiverName;
  114. }
  115. public void setTaskReceiverName(String taskReceiverName) {
  116. this.taskReceiverName = taskReceiverName;
  117. }
  118. public Integer getPublishStatus() {
  119. return publishStatus;
  120. }
  121. public void setPublishStatus(Integer publishStatus) {
  122. this.publishStatus = publishStatus;
  123. }
  124. public String getSalesmanName() {
  125. return salesmanName;
  126. }
  127. public void setSalesmanName(String salesmanName) {
  128. this.salesmanName = salesmanName;
  129. }
  130. public String getTechnicianMobile() {
  131. return technicianMobile;
  132. }
  133. public void setTechnicianMobile(String technicianMobile) {
  134. this.technicianMobile = technicianMobile;
  135. }
  136. }