64 lines
1.2 KiB
Java
64 lines
1.2 KiB
Java
|
|
package com.klp.perf.domain;
|
|||
|
|
|
|||
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|||
|
|
import com.klp.common.core.domain.BaseEntity;
|
|||
|
|
import lombok.Data;
|
|||
|
|
import lombok.EqualsAndHashCode;
|
|||
|
|
|
|||
|
|
import java.util.Date;
|
|||
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 车间扣款/奖励项目配置对象 perf_dept_item_config
|
|||
|
|
*
|
|||
|
|
* @author klp
|
|||
|
|
* @date 2026-07-07
|
|||
|
|
*/
|
|||
|
|
@Data
|
|||
|
|
@EqualsAndHashCode(callSuper = true)
|
|||
|
|
@TableName("perf_dept_item_config")
|
|||
|
|
public class PerfDeptItemConfig extends BaseEntity {
|
|||
|
|
|
|||
|
|
private static final long serialVersionUID=1L;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
*
|
|||
|
|
*/
|
|||
|
|
@TableId(value = "id")
|
|||
|
|
private String id;
|
|||
|
|
/**
|
|||
|
|
* 关联 wms_dept.id
|
|||
|
|
*/
|
|||
|
|
private String deptId;
|
|||
|
|
/**
|
|||
|
|
* 类型: 1=扣款项目 2=奖励项目
|
|||
|
|
*/
|
|||
|
|
private Long itemType;
|
|||
|
|
/**
|
|||
|
|
* 项目名称 如:质量扣款/节能奖励
|
|||
|
|
*/
|
|||
|
|
private String itemName;
|
|||
|
|
/**
|
|||
|
|
*
|
|||
|
|
*/
|
|||
|
|
private Long sortOrder;
|
|||
|
|
/**
|
|||
|
|
* 月份
|
|||
|
|
*/
|
|||
|
|
private Date month;
|
|||
|
|
/**
|
|||
|
|
*
|
|||
|
|
*/
|
|||
|
|
private Long isEnabled;
|
|||
|
|
/**
|
|||
|
|
* 删除标志(0=正常,1=已删除)
|
|||
|
|
*/
|
|||
|
|
@TableLogic
|
|||
|
|
private Integer delFlag;
|
|||
|
|
/**
|
|||
|
|
* 备注
|
|||
|
|
*/
|
|||
|
|
private String remark;
|
|||
|
|
|
|||
|
|
}
|