package org.jeecg.modules.mdc.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
import org.jeecg.common.system.base.entity.JeecgEntity;
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* @Description: 设备加班管理
|
* @Author: Lius
|
* @Date: 2023-08-25
|
* @Version: V1.0
|
*/
|
@Data
|
@TableName("mdc_equipment_overtime")
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@ApiModel(value = "mdc_equipment_overtime对象", description = "设备加班管理")
|
public class MdcEquipmentOvertime extends JeecgEntity implements Serializable {
|
|
private static final long serialVersionUID = -7163039765166584824L;
|
|
@TableField(exist = false)
|
@Excel(name = "设备编号", width = 20)
|
private String equipmentId;
|
|
@TableField(exist = false)
|
@Excel(name = "设备名称", width = 20)
|
private String equipmentName;
|
|
/**
|
* 生效日期
|
*/
|
@Excel(name = "生效日期", width = 15)
|
@TableField(exist = false)
|
private String effectiveDate;
|
|
/**
|
* 班次开始时间
|
*/
|
@Excel(name = "班次开始时间", width = 20)
|
@ApiModelProperty("班次开始时间")
|
@TableField(exist = false)
|
private String startDate;
|
|
/**
|
* 班次结束时间
|
*/
|
@Excel(name = "班次结束时间", width = 20)
|
@ApiModelProperty("班次结束时间")
|
@TableField(exist = false)
|
private String endDate;
|
|
/**
|
* 工作日历id
|
*/
|
@ApiModelProperty(value = "工作日历id")
|
private String calendarId;
|
|
/**
|
* 加班开始时间
|
*/
|
@Excel(name = "加班开始时间", width = 20)
|
@ApiModelProperty(value = "加班开始时间")
|
private String startTime;
|
/**
|
* 加班结束时间
|
*/
|
@Excel(name = "加班结束时间", width = 20)
|
@ApiModelProperty(value = "加班结束时间")
|
private String endTime;
|
|
/**
|
* 备注
|
*/
|
@Excel(name = "备注")
|
@ApiModelProperty(value = "备注")
|
private String remark;
|
|
/**
|
* 前台传入 判断每个id
|
*/
|
@TableField(exist = false)
|
private String parentId;
|
|
/**
|
* 前台传入 车间层级:1 部门层级:2
|
*/
|
@TableField(exist = false)
|
private String typeTree;
|
|
/**
|
* 部门parentId 关联子集id
|
*/
|
@TableField(exist = false)
|
private List<String> mdcSectionIds;
|
|
@TableField(exist = false)
|
private String equipmentIds;
|
|
}
|