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; 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; /** *

* 人员考评 *

* * @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) @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; }