| | |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | |
| | | /** |
| | | * 奖惩记录(RewardPunishmentDetail)表实体类 |
| | | * |
| | | * @author xurui |
| | | * @since 2022-08-03 10:37:54 |
| | | * @since 2022-08-29 08:41:36 |
| | | */ |
| | | @SuppressWarnings("serial") |
| | | @TableName("reward_punishment_detail") |
| | |
| | | } |
| | | |
| | | //奖惩标准/外键 |
| | | private Long rewardPunishmentStandardId; |
| | | private Long rewardPunishmentStandardId; |
| | | |
| | | public Long getRewardPunishmentStandardId() { |
| | | return rewardPunishmentStandardId; |
| | |
| | | this.rewardPunishmentStandardId = rewardPunishmentStandardId; |
| | | } |
| | | //员工ID(多个用逗号隔开) |
| | | private String personId; |
| | | private String personId; |
| | | |
| | | public String getPersonId() { |
| | | return personId; |
| | |
| | | this.personId = personId; |
| | | } |
| | | //员工名(多个用逗号隔开) |
| | | private String personName; |
| | | private String personName; |
| | | |
| | | public String getPersonName() { |
| | | return personName; |
| | |
| | | this.personName = personName; |
| | | } |
| | | //备注信息 |
| | | 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; |
| | | } |
| | | |
| | | } |