zss
2024-06-21 d7abd9ebd3adf6bd7adac595fd1c070568432acb
performance-server/src/main/java/com/yuanchu/mom/pojo/Evaluate.java
@@ -1,5 +1,7 @@
package com.yuanchu.mom.pojo;
import com.alibaba.excel.annotation.ExcelIgnore;
import com.alibaba.excel.annotation.ExcelProperty;
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
@@ -28,51 +30,69 @@
public class Evaluate extends OrderBy implements Serializable {
    @TableId(value = "id", type = IdType.AUTO)
    @ExcelIgnore
    private Integer id;
    @ApiModelProperty("外键 关联用户id")
    @ExcelIgnore
    private Integer userId;
    @ValueTableShow(value = 1, name = "工号")
    @TableField(exist = false,select = false)
    @ExcelProperty(value = "工号")
    private String account;
    @ValueTableShow(value = 2, name = "姓名")
    @TableField(exist = false,select = false)
    @ExcelProperty(value = "姓名")
    private String name;
    @TableField(exist = false,select = false)
    //实验室
    private String departLims;
    @ValueTableShow(value = 3, name = "员工互评")
    @TableField(exist = false,select = false)
    @ExcelProperty(value = "员工互评")
    private Double groupTotal;
    @ValueTableShow(value = 4, name = "组长评分")
    @TableField(exist = false,select = false)
    @ExcelProperty(value = "员工互评")
    private Double leaderTotal;
    @ValueTableShow(value = 5, name = "主管评分")
    @TableField(exist = false,select = false)
    @ExcelProperty(value = "主管评分")
    private Double competentTotal;
    @ApiModelProperty("考评得分")
    @ValueTableShow(6)
    @ExcelProperty(value = "考评得分")
    private Double score;
    @ApiModelProperty("考评等级")
    @ValueTableShow(7)
    @ExcelProperty(value = "考评等级")
    private String grade;
    @ApiModelProperty("月份")
    @ExcelIgnore
    private String month;
    @TableField(fill = FieldFill.INSERT)
    @ExcelIgnore
    private LocalDateTime createTime;
    @TableField(fill = FieldFill.INSERT_UPDATE)
    @ExcelIgnore
    private LocalDateTime updateTime;
    @TableField(fill = FieldFill.INSERT)
    @ExcelIgnore
    private Integer createUser;
    @TableField(fill = FieldFill.INSERT_UPDATE)
    @ExcelIgnore
    private Integer updateUser;
}