2026-07-07 15:24:11 +08:00
|
|
|
|
package com.klp.perf.domain;
|
|
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|
|
|
|
|
import com.klp.common.core.domain.BaseEntity;
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 岗位绩效考核模板对象 perf_position_template
|
|
|
|
|
|
*
|
|
|
|
|
|
* @author klp
|
|
|
|
|
|
* @date 2026-07-07
|
|
|
|
|
|
*/
|
|
|
|
|
|
@Data
|
|
|
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
|
|
|
@TableName("perf_position_template")
|
|
|
|
|
|
public class PerfPositionTemplate extends BaseEntity {
|
|
|
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID=1L;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
*
|
|
|
|
|
|
*/
|
|
|
|
|
|
@TableId(value = "id")
|
2026-07-07 16:39:37 +08:00
|
|
|
|
private Long id;
|
2026-07-07 15:24:11 +08:00
|
|
|
|
/**
|
2026-07-07 16:39:37 +08:00
|
|
|
|
* 关联 perf_dept.id
|
2026-07-07 15:24:11 +08:00
|
|
|
|
*/
|
2026-07-07 16:39:37 +08:00
|
|
|
|
private Long deptId;
|
2026-07-07 15:24:11 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 岗位名称 (与员工表岗位字段匹配)
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String positionName;
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 模板标题 如:轧机主操绩效考核评分表
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String title;
|
|
|
|
|
|
/**
|
|
|
|
|
|
*
|
|
|
|
|
|
*/
|
|
|
|
|
|
private Long isEnabled;
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 删除标志(0=正常,1=已删除)
|
|
|
|
|
|
*/
|
|
|
|
|
|
@TableLogic
|
|
|
|
|
|
private Integer delFlag;
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 备注
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String remark;
|
|
|
|
|
|
|
|
|
|
|
|
}
|