From 03f241781205b4aaafa6cee66e7402a41ef97fc1 Mon Sep 17 00:00:00 2001 From: wuyouming666 <2265557248@qq.com> Date: 星期五, 24 五月 2024 15:27:40 +0800 Subject: [PATCH] 增加websocket 推送下片数据给前端 --- hangzhoumesParent/moduleService/UnLoadGlassModule/src/main/java/com/mes/downworkstation/entity/DownWorkstation.java | 70 +++++++++++++++++++++++++++++++++++ 1 files changed, 70 insertions(+), 0 deletions(-) diff --git a/hangzhoumesParent/moduleService/UnLoadGlassModule/src/main/java/com/mes/downworkstation/entity/DownWorkstation.java b/hangzhoumesParent/moduleService/UnLoadGlassModule/src/main/java/com/mes/downworkstation/entity/DownWorkstation.java new file mode 100644 index 0000000..d242127 --- /dev/null +++ b/hangzhoumesParent/moduleService/UnLoadGlassModule/src/main/java/com/mes/downworkstation/entity/DownWorkstation.java @@ -0,0 +1,70 @@ +package com.mes.downworkstation.entity; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; +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 DownWorkstation implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 涓嬬墖宸ヤ綅琛╥d + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 宸ヤ綅id + */ + private Integer workstationId; + + /** + * 娴佺▼鍗″彿 + */ + private String flowCardId; + + /** + * 璁惧id + */ + private Integer deviceId; + + /** + * 鍚敤鐘舵�� + */ + private Integer enableState; + + /** + * 宸ヤ綔鐘舵�� + */ + private Integer workState; + + + /** + * 鎬绘暟閲� + */ + @TableField("total_quantity") + private Integer totalquantity; + + /** + * 钀芥灦鏁伴噺 + */ + @TableField("racks_number") + private Integer Racksnumber; + + +} -- Gitblit v1.8.0