fix
songhuangfeng123
2022-09-20 f1f506172a3edff8d31e4db77b8940f115660919
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package com.gkhy.safePlatform.targetDuty.entity;
 
import java.sql.Timestamp;
import com.gkhy.safePlatform.targetDuty.entity.BaseDomain;
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-29 08:41:36
 */
@SuppressWarnings("serial")
@TableName("reward_punishment_detail")
public class RewardPunishmentDetail extends BaseDomain {
    
    
    @TableId(type = IdType.AUTO)
    private Long id;
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
                //奖惩标准/外键
            private Long rewardPunishmentStandardId;
        
    public Long getRewardPunishmentStandardId() {
        return rewardPunishmentStandardId;
    }
 
    public void setRewardPunishmentStandardId(Long rewardPunishmentStandardId) {
        this.rewardPunishmentStandardId = rewardPunishmentStandardId;
    }
                //员工ID(多个用逗号隔开)
            private String personId;
        
    public String getPersonId() {
        return personId;
    }
 
    public void setPersonId(String personId) {
        this.personId = personId;
    }
                //员工名(多个用逗号隔开)
            private String personName;
        
    public String getPersonName() {
        return personName;
    }
 
    public void setPersonName(String personName) {
        this.personName = personName;
    }
                //备注信息
            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;
    }
    
}