From ad28331c1e3ed456b72765874b41b83b49dc279f Mon Sep 17 00:00:00 2001 From: 严智鑫 <test> Date: 星期四, 18 四月 2024 14:44:11 +0800 Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10101/r/HangZhouMes --- hangzhoumesParent/moduleService/UnLoadGlassModule/src/main/java/com/mes/downstorage/entity/DownStorageCage.java | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 51 insertions(+), 0 deletions(-) diff --git a/hangzhoumesParent/moduleService/UnLoadGlassModule/src/main/java/com/mes/downstorage/entity/DownStorageCage.java b/hangzhoumesParent/moduleService/UnLoadGlassModule/src/main/java/com/mes/downstorage/entity/DownStorageCage.java new file mode 100644 index 0000000..e747ab1 --- /dev/null +++ b/hangzhoumesParent/moduleService/UnLoadGlassModule/src/main/java/com/mes/downstorage/entity/DownStorageCage.java @@ -0,0 +1,51 @@ +package com.mes.downstorage.entity; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import lombok.Data; +import lombok.EqualsAndHashCode; + +import java.io.Serializable; + +/** + * <p> + * + * </p> + * + * @author zhoush + * @since 2024-03-27 + */ +@Data +@EqualsAndHashCode(callSuper = false) +public class DownStorageCage implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 涓嬬墖鍓嶇悊鐗囩琛╥d + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 璁惧id + */ + private Integer deviceId; + + /** + * 鏍呮牸鍙� + */ + private Integer slot; + + /** + * 鍚敤鐘舵�� + */ + private String enableState; + + /** + * 鍓╀綑 + */ + private Integer remainWidth; + + +} -- Gitblit v1.8.0