package org.jeecg.modules.mdc.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
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 org.springframework.format.annotation.DateTimeFormat;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @author Lius
|
* @date 2023/11/27 10:57
|
*/
|
@Data
|
@TableName("mdc_process_count")
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@ApiModel(value = "mdc_process_count对象", description = "设备加工工件个数表")
|
public class MdcProcessCount extends JeecgEntity implements Serializable {
|
|
private static final long serialVersionUID = 370474448269945391L;
|
|
/**
|
* 设备编号
|
*/
|
@Excel(name = "设备编号", width = 15)
|
@ApiModelProperty(value = "设备编号")
|
private String equipmentId;
|
|
/**
|
* 设备名称
|
*/
|
@Excel(name = "设备名称", width = 20)
|
@ApiModelProperty(value = "设备名称")
|
private String equipmentName;
|
|
/**
|
* 日期
|
*/
|
@Excel(name = "日期", width = 20, format = "yyyy-MM-dd")
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
@ApiModelProperty(value = "日期")
|
private String theDate;
|
|
/**
|
* 开始时间
|
*/
|
@Excel(name = "开始时间", width = 20, format = "yyyy-MM-dd")
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
@ApiModelProperty(value = "开始时间")
|
private Date startTime;
|
|
/**
|
* 结束时间
|
*/
|
@Excel(name = "结束时间", width = 20, format = "yyyy-MM-dd")
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
@ApiModelProperty(value = "结束时间")
|
private Date endTime;
|
|
/**
|
* 时长
|
*/
|
@Excel(name = "时长", width = 20)
|
@ApiModelProperty(value = "时长")
|
private Long duration;
|
|
/**
|
* 程序号
|
*/
|
@Excel(name = "程序号", width = 20)
|
@ApiModelProperty(value = "程序号")
|
private String sequenceNumber;
|
}
|