package org.dromara.qa.md.domain.vo;
|
|
import java.util.Date;
|
|
import org.dromara.qa.md.domain.MdShift;
|
import cn.idev.excel.annotation.ExcelIgnoreUnannotated;
|
import cn.idev.excel.annotation.ExcelProperty;
|
import io.github.linpeilie.annotations.AutoMapper;
|
import lombok.Data;
|
|
import java.io.Serial;
|
import java.io.Serializable;
|
|
|
/**
|
* 班次视图对象 MD_SHIFT
|
*
|
* @author zhuguifei
|
* @date 2026-03-04
|
*/
|
@Data
|
@ExcelIgnoreUnannotated
|
@AutoMapper(target = MdShift.class)
|
public class MdShiftVo implements Serializable {
|
|
@Serial
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@ExcelProperty(value = "id")
|
private String id;
|
|
/**
|
* 车间外键
|
*/
|
@ExcelProperty(value = "车间外键")
|
private String wsId;
|
|
/**
|
* 编码
|
*/
|
@ExcelProperty(value = "编码")
|
private String code;
|
|
/**
|
* 名称
|
*/
|
@ExcelProperty(value = "名称")
|
private String name;
|
|
/**
|
* 班次开始时间
|
*/
|
@ExcelProperty(value = "班次开始时间")
|
private String stim;
|
|
/**
|
* 班次结束时间
|
*/
|
@ExcelProperty(value = "班次结束时间")
|
private String etim;
|
|
/**
|
* 排序
|
*/
|
@ExcelProperty(value = "排序")
|
private Long seq;
|
|
/**
|
* 启用
|
*/
|
@ExcelProperty(value = "启用")
|
private Long enable;
|
|
/**
|
* 删除
|
*/
|
@ExcelProperty(value = "删除")
|
private Long del;
|
|
/**
|
* 创建用户
|
*/
|
@ExcelProperty(value = "创建用户")
|
private String createUserName;
|
|
/**
|
* 创建时间
|
*/
|
@ExcelProperty(value = "创建时间")
|
private Date createUserTime;
|
|
/**
|
* 更新用户
|
*/
|
@ExcelProperty(value = "更新用户")
|
private String updateUserName;
|
|
/**
|
* 更新时间
|
*/
|
@ExcelProperty(value = "更新时间")
|
private Date updateUserTime;
|
|
|
}
|