Ver código fonte

fix工单操作记录表——送检工单相关实体类

LLL 1 ano atrás
pai
commit
778d1667c4

+ 64 - 0
module_cmms/src/main/java/org/jeecg/modules/cmmsOrderNode/vo/CmmsOrderNodeSubmissionVO.java

@@ -0,0 +1,64 @@
+package org.jeecg.modules.cmmsOrderNode.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 CmmsOrderNodeSubmissionVO implements Serializable {
+    private static final long serialVersionUID = 1L;
+
+    /**工单操作记录ID*/
+    @TableId(type = IdType.ASSIGN_ID)
+    @ApiModelProperty(value = "工单操作记录ID")
+    private java.lang.String id;
+    /**创建者*/
+    @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;
+    /**备注*/
+    @Excel(name = "备注", width = 15)
+    @ApiModelProperty(value = "备注")
+    private java.lang.String remark;
+    /**操作节点名称*/
+    @Excel(name = "操作节点名称", width = 15)
+    @ApiModelProperty(value = "操作节点名称")
+    @Dict(dicCode = "submission_gdstatus")
+    private java.lang.String nodename;
+    /**工单ID*/
+    @Excel(name = "工单ID", width = 15)
+    @ApiModelProperty(value = "工单ID")
+    private java.lang.String relid;
+    /**处理意见*/
+    @Excel(name = "处理意见", width = 15)
+    @ApiModelProperty(value = "处理意见")
+    private java.lang.String opinion;
+    /**处理时间*/
+    @Excel(name = "处理时间", width = 15, 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 handledate;
+    /**所属部门*/
+    @ApiModelProperty(value = "所属部门")
+    private java.lang.String sysOrgCode;
+}