package com.ruoyi.lavorissue.pojo;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
import java.util.List;
|
|
/**
|
* @author :yys
|
* @date : 2025/11/19 13:56
|
*/
|
@Data
|
@TableName("labor_conf")
|
public class LaborConf {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
@ApiModelProperty("部门岗位表id")
|
private Long deptPositionId;
|
|
/**
|
* 防具名称-字典
|
*/
|
@ApiModelProperty("防具名称-字典")
|
private String dictId;
|
|
/**
|
* 防具名称
|
*/
|
@ApiModelProperty("防具名称")
|
@TableField(exist = false)
|
private String dictName;
|
|
|
/**
|
* 数量
|
*/
|
@ApiModelProperty("数量")
|
private Integer num;
|
|
|
/**
|
* 季度(第一季度-1类推)
|
*/
|
@ApiModelProperty("季度(第一季度-1类推)")
|
private Integer quarter;
|
|
|
/**
|
* 创建者
|
*/
|
@TableField(fill = FieldFill.INSERT)
|
private Integer createUser;
|
|
/**
|
* 创建时间
|
*/
|
@TableField(fill = FieldFill.INSERT)
|
private LocalDateTime createTime;
|
|
/**
|
* 修改者
|
*/
|
@TableField(fill = FieldFill.INSERT_UPDATE)
|
private Integer updateUser;
|
|
/**
|
* 修改时间
|
*/
|
@TableField(fill = FieldFill.INSERT_UPDATE)
|
private LocalDateTime updateTime;
|
|
/**
|
* 租户ID
|
*/
|
@TableField(fill = FieldFill.INSERT)
|
private Long tenantId;
|
|
}
|