TaskFeature.java 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. package com.goafanti.common.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. /**
  5. * 项目申报详情日志(TaskFeature)实体类
  6. *
  7. * @author makejava
  8. * @since 2025-01-02 15:36:03
  9. */
  10. public class TaskFeature implements Serializable {
  11. private static final long serialVersionUID = 475737003772588398L;
  12. private Integer id;
  13. /**
  14. * 项目进度编号
  15. */
  16. private Integer tdid;
  17. /**
  18. * 检查开始时间
  19. */
  20. private Date startTime;
  21. /**
  22. * 检查部门
  23. */
  24. private String depName;
  25. /**
  26. * 被检查年度
  27. */
  28. private String yearFeature;
  29. /**
  30. * 检查类别
  31. */
  32. private Integer type;
  33. /**
  34. * 检查事项
  35. */
  36. private String inspectionItems;
  37. /**
  38. * 企业问题点
  39. */
  40. private String enterpriseProblems;
  41. /**
  42. * 解决方式
  43. */
  44. private String solution;
  45. /**
  46. * 检查后结论
  47. */
  48. private String inspectionConclusion;
  49. /**
  50. * 是否提醒企业专业人员跟进事宜
  51. */
  52. private String remindFollow;
  53. /**
  54. * 备注说明
  55. */
  56. private String remarks;
  57. /**
  58. * 创建时间
  59. */
  60. private Date createTime;
  61. public Integer getId() {
  62. return id;
  63. }
  64. public void setId(Integer id) {
  65. this.id = id;
  66. }
  67. public Integer getTdid() {
  68. return tdid;
  69. }
  70. public void setTdid(Integer tdid) {
  71. this.tdid = tdid;
  72. }
  73. public Date getStartTime() {
  74. return startTime;
  75. }
  76. public void setStartTime(Date startTime) {
  77. this.startTime = startTime;
  78. }
  79. public String getDepName() {
  80. return depName;
  81. }
  82. public void setDepName(String depName) {
  83. this.depName = depName;
  84. }
  85. public String getYearFeature() {
  86. return yearFeature;
  87. }
  88. public void setYearFeature(String yearFeature) {
  89. this.yearFeature = yearFeature;
  90. }
  91. public Integer getType() {
  92. return type;
  93. }
  94. public void setType(Integer type) {
  95. this.type = type;
  96. }
  97. public String getInspectionItems() {
  98. return inspectionItems;
  99. }
  100. public void setInspectionItems(String inspectionItems) {
  101. this.inspectionItems = inspectionItems;
  102. }
  103. public String getEnterpriseProblems() {
  104. return enterpriseProblems;
  105. }
  106. public void setEnterpriseProblems(String enterpriseProblems) {
  107. this.enterpriseProblems = enterpriseProblems;
  108. }
  109. public String getSolution() {
  110. return solution;
  111. }
  112. public void setSolution(String solution) {
  113. this.solution = solution;
  114. }
  115. public String getInspectionConclusion() {
  116. return inspectionConclusion;
  117. }
  118. public void setInspectionConclusion(String inspectionConclusion) {
  119. this.inspectionConclusion = inspectionConclusion;
  120. }
  121. public String getRemindFollow() {
  122. return remindFollow;
  123. }
  124. public void setRemindFollow(String remindFollow) {
  125. this.remindFollow = remindFollow;
  126. }
  127. public String getRemarks() {
  128. return remarks;
  129. }
  130. public void setRemarks(String remarks) {
  131. this.remarks = remarks;
  132. }
  133. public Date getCreateTime() {
  134. return createTime;
  135. }
  136. public void setCreateTime(Date createTime) {
  137. this.createTime = createTime;
  138. }
  139. }