| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- package com.goafanti.common.model;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * 项目申报详情日志(TaskFeature)实体类
- *
- * @author makejava
- * @since 2025-01-02 15:36:03
- */
- public class TaskFeature implements Serializable {
- private static final long serialVersionUID = 475737003772588398L;
- private Integer id;
- /**
- * 项目进度编号
- */
- private Integer tdid;
- /**
- * 检查开始时间
- */
- private Date startTime;
- /**
- * 检查部门
- */
- private String depName;
- /**
- * 被检查年度
- */
- private String yearFeature;
- /**
- * 检查类别
- */
- private Integer type;
- /**
- * 检查事项
- */
- private String inspectionItems;
- /**
- * 企业问题点
- */
- private String enterpriseProblems;
- /**
- * 解决方式
- */
- private String solution;
- /**
- * 检查后结论
- */
- private String inspectionConclusion;
- /**
- * 是否提醒企业专业人员跟进事宜
- */
- private String remindFollow;
- /**
- * 备注说明
- */
- private String remarks;
- /**
- * 创建时间
- */
- private Date createTime;
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public Integer getTdid() {
- return tdid;
- }
- public void setTdid(Integer tdid) {
- this.tdid = tdid;
- }
- public Date getStartTime() {
- return startTime;
- }
- public void setStartTime(Date startTime) {
- this.startTime = startTime;
- }
- public String getDepName() {
- return depName;
- }
- public void setDepName(String depName) {
- this.depName = depName;
- }
- public String getYearFeature() {
- return yearFeature;
- }
- public void setYearFeature(String yearFeature) {
- this.yearFeature = yearFeature;
- }
- public Integer getType() {
- return type;
- }
- public void setType(Integer type) {
- this.type = type;
- }
- public String getInspectionItems() {
- return inspectionItems;
- }
- public void setInspectionItems(String inspectionItems) {
- this.inspectionItems = inspectionItems;
- }
- public String getEnterpriseProblems() {
- return enterpriseProblems;
- }
- public void setEnterpriseProblems(String enterpriseProblems) {
- this.enterpriseProblems = enterpriseProblems;
- }
- public String getSolution() {
- return solution;
- }
- public void setSolution(String solution) {
- this.solution = solution;
- }
- public String getInspectionConclusion() {
- return inspectionConclusion;
- }
- public void setInspectionConclusion(String inspectionConclusion) {
- this.inspectionConclusion = inspectionConclusion;
- }
- public String getRemindFollow() {
- return remindFollow;
- }
- public void setRemindFollow(String remindFollow) {
- this.remindFollow = remindFollow;
- }
- public String getRemarks() {
- return remarks;
- }
- public void setRemarks(String remarks) {
- this.remarks = remarks;
- }
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- }
|