From dd91c85493463db1968e6e7a61c841d20f948cf6 Mon Sep 17 00:00:00 2001 From: Junjie <fallin.jie@qq.com> Date: 星期二, 14 十一月 2023 16:37:48 +0800 Subject: [PATCH] # --- src/main/java/com/zy/asrs/entity/BasShuttleOpt.java | 38 +++++++++++++++++++++++++++++++++++++- 1 files changed, 37 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..1e476d8 100644 --- a/src/main/java/com/zy/asrs/entity/BasShuttleOpt.java +++ b/src/main/java/com/zy/asrs/entity/BasShuttleOpt.java @@ -96,9 +96,43 @@ @ApiModelProperty(value= "鍛戒护") private String command; + /** + * 鍛戒护 + */ + @ApiModelProperty(value= "鍛戒护鎶ユ枃(涓嬪彂)") + private String commandSend; + + /** + * 绯荤粺鐘舵�� + */ + @ApiModelProperty(value= "绯荤粺鐘舵��") + @TableField("system_status") + private String systemStatus; + + /** + * 涓嬪彂鐘舵�亄0:鏈笅鍙�,1:宸蹭笅鍙憓 + */ + @ApiModelProperty(value= "涓嬪彂鐘舵�亄0:鏈笅鍙�,1:宸蹭笅鍙憓") + @TableField("send") + private Integer send; + + /** + * 璇锋眰鍝嶅簲 + */ + @ApiModelProperty(value= "璇锋眰鍝嶅簲") + @TableField("response") + private String response; + + /** + * 璁惧宸ヤ綔鍙� + */ + @ApiModelProperty(value= "璁惧宸ヤ綔鍙�") + @TableField("device_wrk") + private String deviceWrk; + 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 +143,8 @@ this.updateBy = updateBy; this.memo = memo; this.command = command; + this.commandSend = commandSend; + this.systemStatus = systemStatus; } // BasShuttleOpt basShuttleOpt = new BasShuttleOpt( -- Gitblit v1.9.1