songhuangfeng123
2022-07-25 d740556f340346c2966f600f5237dca010b27f4a
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
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;
 
/**
 * 绩效考核标准(ExamineTemplate)表实体类
 *
 * @author xurui
 * @since 2022-07-21 10:58:10
 */
@SuppressWarnings("serial")
@TableName("examine_template")
public class ExamineTemplate extends BaseDomain {
    
    
    @TableId(type = IdType.AUTO)
    private Long id;
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
                //标准标题
    private String title;
        
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
                //适用范围
    private String applyRange;
        
    public String getApplyRange() {
        return applyRange;
    }
 
    public void setApplyRange(String applyRange) {
        this.applyRange = applyRange;
    }
                //模板分类编码
    private String templateCode;
        
    public String getTemplateCode() {
        return templateCode;
    }
 
    public void setTemplateCode(String templateCode) {
        this.templateCode = templateCode;
    }
                //合格分数
    private String acceptanceNumber;
        
    public String getAcceptanceNumber() {
        return acceptanceNumber;
    }
 
    public void setAcceptanceNumber(String acceptanceNumber) {
        this.acceptanceNumber = acceptanceNumber;
    }
                //备注信息
    private String memo;
        
    public String getMemo() {
        return memo;
    }
 
    public void setMemo(String memo) {
        this.memo = memo;
    }
                
    private Long setPersonId;
        
    public Long getSetPersonId() {
        return setPersonId;
    }
 
    public void setSetPersonId(Long setPersonId) {
        this.setPersonId = setPersonId;
    }
                
    private Long setPersonDepartmentId;
        
    public Long getSetPersonDepartmentId() {
        return setPersonDepartmentId;
    }
 
    public void setSetPersonDepartmentId(Long setPersonDepartmentId) {
        this.setPersonDepartmentId = setPersonDepartmentId;
    }
                
    private Timestamp setTimem;
        
    public Timestamp getSetTimem() {
        return setTimem;
    }
 
    public void setSetTimem(Timestamp setTimem) {
        this.setTimem = setTimem;
    }
            
}