|
@@ -0,0 +1,92 @@
|
|
|
+package org.jeecg.modules.cmmsSubmissionEquipment.vo;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
+import org.jeecg.common.aspect.annotation.Dict;
|
|
|
+import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+@Data
|
|
|
+public class CmmsSubmissionEquipmentXQVO implements Serializable {
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**主键*/
|
|
|
+ @TableId(type = IdType.ASSIGN_ID)
|
|
|
+ @ApiModelProperty(value = "主键")
|
|
|
+ private java.lang.String id;
|
|
|
+ /**送检工单id*/
|
|
|
+ @Excel(name = "送检工单id", width = 15)
|
|
|
+ @ApiModelProperty(value = "送检工单id")
|
|
|
+ private java.lang.String cmmsSubmissionId;
|
|
|
+ /**设备id*/
|
|
|
+ @Excel(name = "设备id", width = 15)
|
|
|
+ @Dict(dictTable = "tpm_equipment", dicCode = "id", dicText = "equipmentname")
|
|
|
+ @ApiModelProperty(value = "设备id")
|
|
|
+ private java.lang.String equipmentid;
|
|
|
+ /**检定日期*/
|
|
|
+ @Excel(name = "检定日期", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ @ApiModelProperty(value = "检定日期")
|
|
|
+ private java.util.Date submissionDate;
|
|
|
+ /**检定结果 (0限用、1合格、2禁用)*/
|
|
|
+ @Excel(name = "检定结果", width = 15, dicCode = "device_verification_result")
|
|
|
+ @Dict(dicCode = "device_verification_result")
|
|
|
+ @ApiModelProperty(value = "检定结果")
|
|
|
+ private java.lang.String submissionResult;
|
|
|
+ /**有效日期*/
|
|
|
+ @Excel(name = "有效日期", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ @ApiModelProperty(value = "有效日期")
|
|
|
+ private java.util.Date submissionEffectiveDate;
|
|
|
+ /**班组确认*/
|
|
|
+ @Excel(name = "班组确认", width = 15)
|
|
|
+ @ApiModelProperty(value = "班组确认")
|
|
|
+ private java.lang.String teamConfirm;
|
|
|
+ /**备注*/
|
|
|
+ @Excel(name = "备注", width = 15)
|
|
|
+ @ApiModelProperty(value = "备注")
|
|
|
+ private java.lang.String remark;
|
|
|
+ /**送检状态 0送检中、1已返回*/
|
|
|
+ @Excel(name = "送检状态", width = 15, dicCode = "submission_status")
|
|
|
+ @Dict(dicCode = "submission_status")
|
|
|
+ @ApiModelProperty(value = "送检状态")
|
|
|
+ private java.lang.String submissionStatus;
|
|
|
+ /**送回日期*/
|
|
|
+ @Excel(name = "送回日期", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ @ApiModelProperty(value = "送回日期")
|
|
|
+ private java.util.Date submissionReturnDate;
|
|
|
+ /**创建人*/
|
|
|
+ @ApiModelProperty(value = "创建人")
|
|
|
+ private java.lang.String createBy;
|
|
|
+ /**创建日期*/
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ @ApiModelProperty(value = "创建日期")
|
|
|
+ private java.util.Date createTime;
|
|
|
+ /**更新人*/
|
|
|
+ @ApiModelProperty(value = "更新人")
|
|
|
+ private java.lang.String updateBy;
|
|
|
+ /**更新日期*/
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ @ApiModelProperty(value = "更新日期")
|
|
|
+ private java.util.Date updateTime;
|
|
|
+ /**所属部门*/
|
|
|
+ @ApiModelProperty(value = "所属部门")
|
|
|
+ private java.lang.String sysOrgCode;
|
|
|
+
|
|
|
+
|
|
|
+ /**送检工单设备名称*/
|
|
|
+ @Excel(name = "送检工单设备名称", width = 15)
|
|
|
+ @ApiModelProperty(value = "送检工单设备名称")
|
|
|
+ private java.lang.String equipmentname;
|
|
|
+}
|