package cn.iocoder.yudao.module.hrm.dal.dataobject.performanceappraise;
|
|
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
|
import cn.iocoder.yudao.module.hrm.enums.HrmAuditStatusEnum;
|
import com.baomidou.mybatisplus.annotation.KeySequence;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.*;
|
|
import java.time.LocalDateTime;
|
|
/**
|
* HRM 绩效考核方案 DO
|
*
|
* 对应 xlsx 人力 1「绩效考核全流程业务」
|
*/
|
@TableName("hrm_performance_appraise")
|
@KeySequence("hrm_performance_appraise_seq")
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@ToString(callSuper = true)
|
@Builder
|
@NoArgsConstructor
|
@AllArgsConstructor
|
public class HrmPerformanceAppraiseDO extends BaseDO {
|
|
/**
|
* 编号
|
*/
|
@TableId
|
private Long id;
|
|
/**
|
* 方案名称
|
*/
|
private String name;
|
|
/**
|
* 考核周期类型: 1-月度 2-季度 3-年度
|
*/
|
private Integer periodType;
|
|
/**
|
* 考核周期描述, 如 2026-08 / 2026-Q3
|
*/
|
private String period;
|
|
/**
|
* 考核范围类型: 1-全部员工 2-指定班组
|
*/
|
private Integer scopeType;
|
|
/**
|
* 方案状态: 0-草稿 10-已发布 20-进行中 30-已完成
|
*/
|
private Integer status;
|
|
/**
|
* 审批状态
|
*
|
* 枚举 {@link HrmAuditStatusEnum}
|
*/
|
private Integer auditStatus;
|
|
/**
|
* 审批流程实例编号
|
*/
|
private String processInstanceId;
|
|
/**
|
* 审核人
|
*/
|
private Long auditUserId;
|
|
/**
|
* 审核时间
|
*/
|
private LocalDateTime auditTime;
|
|
/**
|
* 审核备注
|
*/
|
private String auditRemark;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
}
|