| | |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | |
| | | /** |
| | | * 绩效考核项目(ExamineItem)表实体类 |
| | | * |
| | | * @author xurui |
| | | * @since 2022-07-21 11:01:38 |
| | | * @since 2022-08-29 08:41:36 |
| | | */ |
| | | @SuppressWarnings("serial") |
| | | @TableName("examine_item") |
| | |
| | | } |
| | | |
| | | //绩效考核模板ID/外键 |
| | | private Long examineTemplateId; |
| | | private Long examineTemplateId; |
| | | |
| | | public Long getExamineTemplateId() { |
| | | return examineTemplateId; |
| | |
| | | this.examineTemplateId = examineTemplateId; |
| | | } |
| | | //类型 |
| | | private String itemType; |
| | | private String itemType; |
| | | |
| | | public String getItemType() { |
| | | return itemType; |
| | |
| | | this.itemType = itemType; |
| | | } |
| | | //考核项目 |
| | | private String itemDetail; |
| | | private String itemDetail; |
| | | |
| | | public String getItemDetail() { |
| | | return itemDetail; |
| | |
| | | this.itemDetail = itemDetail; |
| | | } |
| | | //考核内容 |
| | | private String content; |
| | | private String content; |
| | | |
| | | public String getContent() { |
| | | return content; |
| | |
| | | this.content = content; |
| | | } |
| | | //评定标准 |
| | | private String judgeStandard; |
| | | private String judgeStandard; |
| | | |
| | | public String getJudgeStandard() { |
| | | return judgeStandard; |
| | |
| | | this.judgeStandard = judgeStandard; |
| | | } |
| | | //考核说明 |
| | | private String memo; |
| | | private String memo; |
| | | |
| | | public String getMemo() { |
| | | return memo; |
| | |
| | | public void setMemo(String memo) { |
| | | this.memo = memo; |
| | | } |
| | | |
| | | //是否删除 0:未删除 1:删除 |
| | | private Integer delFlag; |
| | | |
| | | public Integer getDelFlag() { |
| | | return delFlag; |
| | | } |
| | | |
| | | public void setDelFlag(Integer delFlag) { |
| | | this.delFlag = delFlag; |
| | | } |
| | | |
| | | } |