From 95db3e96a9465f137fdf16540e0c5985752894c2 Mon Sep 17 00:00:00 2001 From: 严智鑫 <test> Date: 星期二, 09 四月 2024 14:27:33 +0800 Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10101/r/HangZhouMes --- UnLoadGlassModule/src/main/java/com/mes/entity/DownWorkstation.java | 56 ++++++++++++++++++++++++++++++++++++++++++++++---------- 1 files changed, 46 insertions(+), 10 deletions(-) diff --git a/UnLoadGlassModule/src/main/java/com/mes/entity/DownWorkstation.java b/UnLoadGlassModule/src/main/java/com/mes/entity/DownWorkstation.java index 524d865..3c15a9d 100644 --- a/UnLoadGlassModule/src/main/java/com/mes/entity/DownWorkstation.java +++ b/UnLoadGlassModule/src/main/java/com/mes/entity/DownWorkstation.java @@ -1,20 +1,56 @@ package com.mes.entity; import com.baomidou.mybatisplus.annotation.IdType; - import com.baomidou.mybatisplus.annotation.TableId; - import lombok.Data; +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; +import lombok.Data; @Data public class DownWorkstation { + /** + * // 涓嬬墖宸ヤ綅琛� + */ @TableId(type = IdType.AUTO) - private int id; // 涓嬬墖宸ヤ綅琛╥d - private Integer workstationId; // 宸ヤ綅id - private String flowCardId; // 娴佺▼鍗″彿 - private Integer deviceId; // 璁惧id - private Integer enableState; // 鍚敤鐘舵�� - private Integer workState; // 宸ヤ綔鐘舵�� - private Integer racks_number; // 宸茶惤鏋舵暟閲� - private Integer total_quantity; // 鎬绘暟閲� + private int id; + + /** + * // 宸ヤ綅id + */ + private Integer workstationId; + + /** + * // 娴佺▼鍗″彿 + */ + private String flowCardId; + + /** + * // 璁惧id + */ + private Integer deviceId; + + /** + * // 鍚敤鐘舵�� + */ + private Integer enableState; + + + + /** + * // 宸ヤ綔鐘舵�� + */ + private Integer workState; + + /** + * // 宸茶惤鏋舵暟閲� + */ + @TableField(value = "racks_number") + private int racksnumber; + + /** + * // 鎬绘暟閲� + */ + @TableField(value = "total_quantity") + private Integer totalquantity; } \ No newline at end of file -- Gitblit v1.8.0