| | |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | |
| | | /** |
| | | * (RewardPunishmentStandard)表实体类 |
| | | * 奖惩目标设定(RewardPunishmentStandard)表实体类 |
| | | * |
| | | * @author xurui |
| | | * @since 2022-07-21 10:20:10 |
| | | * @since 2022-08-29 08:41:36 |
| | | */ |
| | | @SuppressWarnings("serial") |
| | | @TableName("reward_punishment_standard") |
| | |
| | | } |
| | | |
| | | //奖惩类型 1:奖励 2:惩罚 |
| | | private Integer standardType; |
| | | private Integer standardType; |
| | | |
| | | public Integer getStandardType() { |
| | | return standardType; |
| | |
| | | this.standardType = standardType; |
| | | } |
| | | //奖惩内容 |
| | | private String content; |
| | | private String content; |
| | | |
| | | public String getContent() { |
| | | return content; |
| | |
| | | this.content = content; |
| | | } |
| | | //奖惩名称 |
| | | private String qName; |
| | | private String qName; |
| | | |
| | | public String getqName() { |
| | | return qName; |
| | |
| | | } |
| | | |
| | | //依据 |
| | | private String reason; |
| | | private String reason; |
| | | |
| | | public String getReason() { |
| | | return reason; |
| | |
| | | this.reason = reason; |
| | | } |
| | | //备注信息 |
| | | 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; |
| | | } |
| | | |
| | | } |