| | |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | |
| | | /** |
| | | * 目标责任书(TargetDutyfileInfo)表实体类 |
| | | * |
| | | * @author xurui |
| | | * @since 2022-07-21 10:07:54 |
| | | * @since 2022-08-09 11:07:00 |
| | | */ |
| | | @SuppressWarnings("serial") |
| | | @TableName("target_dutyfile_info") |
| | |
| | | } |
| | | |
| | | //序号 |
| | | private String indexNum; |
| | | private String indexNum; |
| | | |
| | | public String getIndexNum() { |
| | | return indexNum; |
| | |
| | | this.indexNum = indexNum; |
| | | } |
| | | //岗位号/外键 |
| | | private Long jobId; |
| | | private Long jobId; |
| | | |
| | | public Long getJobId() { |
| | | return jobId; |
| | |
| | | this.jobId = jobId; |
| | | } |
| | | //责任书签订日期 |
| | | private Timestamp signDate; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Timestamp signDate; |
| | | |
| | | public Timestamp getSignDate() { |
| | | return signDate; |
| | |
| | | this.signDate = signDate; |
| | | } |
| | | //备注信息 |
| | | private String memo; |
| | | private String memo; |
| | | |
| | | public String getMemo() { |
| | | return memo; |
| | |
| | | this.memo = memo; |
| | | } |
| | | //责任书附件,多个附件用逗号隔开 |
| | | private String extraFile; |
| | | private String extraFile; |
| | | |
| | | public String getExtraFile() { |
| | | return extraFile; |