From a3457fec2098d42166adba326c1d7f197cb59b16 Mon Sep 17 00:00:00 2001 From: pang.jiabao <pang_jiabao@163.com> Date: 星期日, 27 四月 2025 08:28:00 +0800 Subject: [PATCH] 米多泉州rgv调度程序完成 --- src/main/java/com/zy/asrs/entity/BasCircularShuttle.java | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main/java/com/zy/asrs/entity/BasCircularShuttle.java b/src/main/java/com/zy/asrs/entity/BasCircularShuttle.java index fcfd3be..3f822b0 100644 --- a/src/main/java/com/zy/asrs/entity/BasCircularShuttle.java +++ b/src/main/java/com/zy/asrs/entity/BasCircularShuttle.java @@ -23,12 +23,12 @@ private Long id; @ApiModelProperty(value= "") - @TableField("ste_id") - private Integer steId; + @TableField("rgv_id") + private Integer rgvId; @ApiModelProperty(value= "") - @TableField("ste_no") - private Integer steNo; + @TableField("rgv_no") + private Integer rgvNo; /** * 0:姝e父锛�1锛氱鐢� @@ -38,9 +38,9 @@ public BasCircularShuttle() {} - public BasCircularShuttle(Integer steId,Integer steNo,Integer status) { - this.steId = steId; - this.steNo = steNo; + public BasCircularShuttle(Integer rgvId,Integer rgvNo,Integer status) { + this.rgvId = rgvId; + this.rgvNo = rgvNo; this.status = status; } -- Gitblit v1.9.1