zss
2024-06-19 02e13964dd95077c5f515156bc0da5187f5c8cf3
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
package com.yuanchu.mom.pojo;
 
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import java.io.Serializable;
import java.time.LocalDateTime;
 
import com.yuanchu.mom.annotation.ValueTableShow;
import com.yuanchu.mom.common.OrderBy;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
 
/**
 * <p>
 * 人员考评
 * </p>
 *
 * @author 江苏鵷雏网络科技有限公司
 * @since 2024-06-17 01:32:45
 */
@Getter
@Setter
@ApiModel(value = "Evaluate对象", description = "人员考评")
public class Evaluate extends OrderBy implements Serializable {
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @ApiModelProperty("外键 关联用户id")
    private Integer userId;
 
    @ValueTableShow(value = 1, name = "工号")
    @TableField(exist = false,select = false)
    private String account;
 
    @ValueTableShow(value = 2, name = "姓名")
    @TableField(exist = false,select = false)
    private String name;
 
    @ValueTableShow(value = 3, name = "员工互评")
    @TableField(exist = false,select = false)
    private Double groupTotal;
 
    @ValueTableShow(value = 4, name = "组长评分")
    @TableField(exist = false,select = false)
    private Double leaderTotal;
 
    @ValueTableShow(value = 5, name = "主管评分")
    @TableField(exist = false,select = false)
    private Double competentTotal;
 
    @ApiModelProperty("考评得分")
    @ValueTableShow(6)
    private Double score;
 
    @ApiModelProperty("考评等级")
    @ValueTableShow(7)
    private String grade;
 
    @ApiModelProperty("月份")
    private String month;
 
    @TableField(fill = FieldFill.INSERT)
    private LocalDateTime createTime;
 
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private LocalDateTime updateTime;
 
    @TableField(fill = FieldFill.INSERT)
    private Integer createUser;
 
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private Integer updateUser;
}