|
@@ -0,0 +1,72 @@
|
|
|
+package org.jeecg.modules.cmmsSubmission.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 CmmsSubmissionQueryVO implements Serializable {
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**主键*/
|
|
|
+ @TableId(type = IdType.ASSIGN_ID)
|
|
|
+ @ApiModelProperty(value = "主键")
|
|
|
+ private java.lang.String id;
|
|
|
+ /**送检负责人*/
|
|
|
+ @Excel(name = "送检负责人", width = 15)
|
|
|
+ @ApiModelProperty(value = "送检负责人")
|
|
|
+ private java.lang.String verificatePerson;
|
|
|
+ /**检定方式*/
|
|
|
+ @Excel(name = "检定方式", width = 15, dicCode = "verificate_method")
|
|
|
+ @Dict(dicCode = "verificate_method")
|
|
|
+ @ApiModelProperty(value = "检定方式")
|
|
|
+ private java.lang.String verificateMethod;
|
|
|
+ /**检定单位id*/
|
|
|
+ @Excel(name = "检定单位id", width = 15, dictTable = "base_client", dicText = "client_name", dicCode = "id")
|
|
|
+ @Dict(dictTable = "base_client", dicText = "client_name", dicCode = "id")
|
|
|
+ @ApiModelProperty(value = "检定单位id")
|
|
|
+ private java.lang.String verificateClientId;
|
|
|
+ /**备注*/
|
|
|
+ @Excel(name = "备注", width = 15)
|
|
|
+ @ApiModelProperty(value = "备注")
|
|
|
+ private java.lang.String remark;
|
|
|
+ /**创建人*/
|
|
|
+ @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.Integer totalNum;
|
|
|
+
|
|
|
+ /**送检设备已返回*/
|
|
|
+ @Excel(name = "送检设备已返回", width = 15)
|
|
|
+ @ApiModelProperty(value = "送检设备已返回")
|
|
|
+ private java.lang.Integer returnNum;
|
|
|
+
|
|
|
+ /**设备集合*/
|
|
|
+ private String equipmentids;
|
|
|
+}
|