From aa64540348a39c2247a79b48156e089d80f43030 Mon Sep 17 00:00:00 2001 From: zhoushihao <zsh19950802@163.com> Date: 星期二, 31 十二月 2024 17:01:21 +0800 Subject: [PATCH] 1、启动关闭plc任务 --- hangzhoumesParent/moduleService/CacheGlassModule/src/main/java/com/mes/edgglasstask/entity/EdgGlassTaskInfo.java | 50 +++++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 47 insertions(+), 3 deletions(-) diff --git a/hangzhoumesParent/moduleService/CacheGlassModule/src/main/java/com/mes/edgglasstask/entity/EdgGlassTaskInfo.java b/hangzhoumesParent/moduleService/CacheGlassModule/src/main/java/com/mes/edgglasstask/entity/EdgGlassTaskInfo.java index 1d660e3..635f475 100644 --- a/hangzhoumesParent/moduleService/CacheGlassModule/src/main/java/com/mes/edgglasstask/entity/EdgGlassTaskInfo.java +++ b/hangzhoumesParent/moduleService/CacheGlassModule/src/main/java/com/mes/edgglasstask/entity/EdgGlassTaskInfo.java @@ -1,5 +1,9 @@ package com.mes.edgglasstask.entity; +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableLogic; +import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; @@ -20,20 +24,60 @@ private static final long serialVersionUID = 1L; + /** + * 纾ㄨ竟浠诲姟id + */ + @TableId(value = "id", type = IdType.AUTO) + private Long id; + /** + * 鐜荤拑id + */ + @ApiModelProperty(value = "鐜荤拑id", position = 2) private String glassId; + /** + * 瀹� + */ + @ApiModelProperty(value = "瀹�", position = 3) private Integer width; + /** + * 楂� + */ + @ApiModelProperty(value = "楂�", position = 4) private Integer height; + /** + * 鍘氬害 + */ + @ApiModelProperty(value = "鍘氬害", position = 5) private Integer thickness; - private Integer glassType; - private Integer status; + /** + * 鐘舵�� + */ + @ApiModelProperty(value = "鐘舵��", position = 6) + private Integer state; + /** + * 绾胯矾 + */ + @ApiModelProperty(value = "绾胯矾", position = 7) private Integer line; - private Date time; + /** + * 绾胯矾 + */ + @ApiModelProperty(value = "寮�濮嬫椂闂�", position = 8) + private Date createTime; + /** + * 绾胯矾 + */ + @ApiModelProperty(value = "鏇存柊鏃堕棿", position = 9) + private Date updateTime; + + @TableLogic + private int deleted; } -- Gitblit v1.8.0