From ff1be9fa2dba6eaffc449d09e62998348ea3b830 Mon Sep 17 00:00:00 2001 From: Junjie <fallin.jie@qq.com> Date: 星期二, 19 九月 2023 08:00:36 +0800 Subject: [PATCH] # --- src/main/java/com/zy/asrs/entity/BasShuttleOpt.java | 17 ++++++++++++++++- 1 files changed, 16 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/zy/asrs/entity/BasShuttleOpt.java b/src/main/java/com/zy/asrs/entity/BasShuttleOpt.java index 8739111..f2eedf9 100644 --- a/src/main/java/com/zy/asrs/entity/BasShuttleOpt.java +++ b/src/main/java/com/zy/asrs/entity/BasShuttleOpt.java @@ -96,9 +96,22 @@ @ApiModelProperty(value= "鍛戒护") private String command; + /** + * 鍛戒护 + */ + @ApiModelProperty(value= "鍛戒护鎶ユ枃(涓嬪彂)") + private String commandSend; + + /** + * 绯荤粺鐘舵�� + */ + @ApiModelProperty(value= "绯荤粺鐘舵��") + @TableField("system_status") + private String systemStatus; + public BasShuttleOpt() {} - public BasShuttleOpt(Integer wrkNo,Integer shuttleNo,Date sendTime,String mode,String sourceLocNo,String distLocNo,Date updateTime,Long updateBy,String memo,String command) { + public BasShuttleOpt(Integer wrkNo, Integer shuttleNo, Date sendTime, String mode, String sourceLocNo, String distLocNo, Date updateTime, Long updateBy, String memo, String command, String commandSend, String systemStatus) { this.wrkNo = wrkNo; this.shuttleNo = shuttleNo; this.sendTime = sendTime; @@ -109,6 +122,8 @@ this.updateBy = updateBy; this.memo = memo; this.command = command; + this.commandSend = commandSend; + this.systemStatus = systemStatus; } // BasShuttleOpt basShuttleOpt = new BasShuttleOpt( -- Gitblit v1.9.1