package org.jeecg.modules.eam.vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.jeecg.modules.eam.entity.CalibrationOrderDetail;
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
import org.jeecgframework.poi.excel.annotation.ExcelCollection;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.util.Date;
|
import java.util.List;
|
|
/**
|
* @Description: 检定工单
|
* @Author: jeecg-boot
|
* @Date: 2023-04-23
|
* @Version: V1.0
|
*/
|
@Data
|
@ApiModel(value = "mom_eam_calibration_orderPage对象", description = "检定工单")
|
public class CalibrationOrderPage {
|
|
/**
|
* 主键id
|
*/
|
@ApiModelProperty(value = "主键id")
|
private String id;
|
/**
|
* 工单号
|
*/
|
@Excel(name = "工单号", width = 15)
|
@ApiModelProperty(value = "工单号")
|
private String num;
|
/**
|
* 检定方式(self-自检,outsourcing-委外)
|
*/
|
@Excel(name = "检定方式(self-自检,outsourcing-委外)", width = 15)
|
@ApiModelProperty(value = "检定方式(self-自检,outsourcing-委外)")
|
private String calibrationType;
|
/**
|
* 管理方式(data-数据,report-报告)
|
*/
|
@Excel(name = "管理方式(data-数据,report-报告)", width = 15)
|
@ApiModelProperty(value = "管理方式(data-数据,report-报告)")
|
private String managementMode;
|
/**
|
* 设备id
|
*/
|
@Excel(name = "设备id", width = 15)
|
@ApiModelProperty(value = "设备id")
|
private String equipmentId;
|
/**
|
* 计划开始时间
|
*/
|
@Excel(name = "计划开始时间", width = 15, format = "yyyy-MM-dd")
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
@ApiModelProperty(value = "计划开始时间")
|
private Date planStartTime;
|
/**
|
* 计划结束时间
|
*/
|
@Excel(name = "计划结束时间", width = 15, format = "yyyy-MM-dd")
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
@ApiModelProperty(value = "计划结束时间")
|
private Date planEndTime;
|
/**
|
* 检定人
|
*/
|
@Excel(name = "检定人", width = 15)
|
@ApiModelProperty(value = "检定人")
|
private String calibrationUserId;
|
/**
|
* 实际开始时间
|
*/
|
@Excel(name = "实际开始时间", width = 15, format = "yyyy-MM-dd")
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
@ApiModelProperty(value = "实际开始时间")
|
private Date actualStartTime;
|
/**
|
* 实际完成时间
|
*/
|
@Excel(name = "实际完成时间", width = 15, format = "yyyy-MM-dd")
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
@ApiModelProperty(value = "实际完成时间")
|
private Date actualEndTime;
|
/**
|
* 检定结果
|
*/
|
@Excel(name = "检定结果", width = 15)
|
@ApiModelProperty(value = "检定结果")
|
private String calibrationResult;
|
/**
|
* 检定结果描述
|
*/
|
@Excel(name = "检定结果描述", width = 15)
|
@ApiModelProperty(value = "检定结果描述")
|
private String calibrationResultDesc;
|
/**
|
* 检定项目总数量
|
*/
|
@Excel(name = "检定项目总数量", width = 15)
|
@ApiModelProperty(value = "检定项目总数量")
|
private Integer calibrationItemNum;
|
/**
|
* 检定项目合格数量
|
*/
|
@Excel(name = "检定项目合格数量", width = 15)
|
@ApiModelProperty(value = "检定项目合格数量")
|
private Integer calibrationItemPassNum;
|
/**
|
* 检定项目不合格数量
|
*/
|
@Excel(name = "检定项目不合格数量", width = 15)
|
@ApiModelProperty(value = "检定项目不合格数量")
|
private Integer calibrationItemFailNum;
|
/**
|
* 领取人id
|
*/
|
@Excel(name = "领取人id", width = 15)
|
@ApiModelProperty(value = "领取人id")
|
private String recipientUserId;
|
/**
|
* 备注
|
*/
|
@Excel(name = "备注", width = 15)
|
@ApiModelProperty(value = "备注")
|
private String remark;
|
/**
|
* 备用字段1
|
*/
|
@Excel(name = "备用字段1", width = 15)
|
@ApiModelProperty(value = "备用字段1")
|
private String calibrationOrderUda1;
|
/**
|
* 备用字段2
|
*/
|
@Excel(name = "备用字段2", width = 15)
|
@ApiModelProperty(value = "备用字段2")
|
private String calibrationOrderUda2;
|
/**
|
* 备用字段3
|
*/
|
@Excel(name = "备用字段3", width = 15)
|
@ApiModelProperty(value = "备用字段3")
|
private String calibrationOrderUda3;
|
/**
|
* 备用字段4
|
*/
|
@Excel(name = "备用字段4", width = 15)
|
@ApiModelProperty(value = "备用字段4")
|
private String calibrationOrderUda4;
|
/**
|
* 备用字段5
|
*/
|
@Excel(name = "备用字段5", width = 15)
|
@ApiModelProperty(value = "备用字段5")
|
private String calibrationOrderUda5;
|
/**
|
* 备用字段6
|
*/
|
@Excel(name = "备用字段6", width = 15)
|
@ApiModelProperty(value = "备用字段6")
|
private String calibrationOrderUda6;
|
/**
|
* 企业ID
|
*/
|
@Excel(name = "企业ID", width = 15)
|
@ApiModelProperty(value = "企业ID")
|
private String enterpriseId;
|
/**
|
* 创建人
|
*/
|
@ApiModelProperty(value = "创建人")
|
private String createBy;
|
/**
|
* 创建日期
|
*/
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
@ApiModelProperty(value = "创建日期")
|
private Date createTime;
|
/**
|
* 更新人
|
*/
|
@ApiModelProperty(value = "更新人")
|
private String updateBy;
|
/**
|
* 更新日期
|
*/
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
@ApiModelProperty(value = "更新日期")
|
private Date updateTime;
|
/**
|
* 删除状态(0-正常,1-已删除)
|
*/
|
@Excel(name = "删除状态(0-正常,1-已删除)", width = 15)
|
@ApiModelProperty(value = "删除状态(0-正常,1-已删除)")
|
private Integer delFlag;
|
/**
|
* 状态
|
*/
|
@Excel(name = "状态", width = 15)
|
@ApiModelProperty(value = "状态")
|
private String status;
|
|
}
|