From 936a3f961de4e7de9e2b28d6cb36dadb1efa57e1 Mon Sep 17 00:00:00 2001 From: Junjie <fallin.jie@qq.com> Date: 星期一, 19 六月 2023 11:20:58 +0800 Subject: [PATCH] 降低小车进出提升机速度 --- src/main/java/com/zy/asrs/entity/WrkMast.java | 28 +++++++++++++++++++++++++++- 1 files changed, 27 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/zy/asrs/entity/WrkMast.java b/src/main/java/com/zy/asrs/entity/WrkMast.java index 3438b83..860704d 100644 --- a/src/main/java/com/zy/asrs/entity/WrkMast.java +++ b/src/main/java/com/zy/asrs/entity/WrkMast.java @@ -74,6 +74,13 @@ @TableField("ste_no") private Integer steNo; + /** + * 杈圭紭搴撲綅 + */ + @ApiModelProperty(value= "杈圭紭搴撲綅") + @TableField("out_most") + private Integer outMost; + @ApiModelProperty(value= "") @TableField("sheet_no") private String sheetNo; @@ -302,7 +309,7 @@ @ApiModelProperty(value= "") @TableField("Pdc_type") - private String PdcType; + private String pdcType; @ApiModelProperty(value= "") @TableField("ctn_no") @@ -314,6 +321,13 @@ @ApiModelProperty(value= "婊℃澘") @TableField("full_plt") private String fullPlt; + + /** + * 鍥涘悜绌挎杞﹀彿 + */ + @ApiModelProperty(value= "鍥涘悜绌挎杞﹀彿") + @TableField("shuttle_no") + private Integer shuttleNo; public String getWrkSts$(){ BasWrkStatusMapper mapper = SpringUtils.getBean(BasWrkStatusMapper.class); @@ -491,4 +505,16 @@ return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.logErrTime); } + public String getOutMost$() { + if (null == this.outMost){ return null; } + switch (this.outMost){ + case 1: + return "杈圭紭搴撲綅"; + case 0: + return "鍐呰仈搴撲綅"; + default: + return String.valueOf(this.outMost); + } + } + } -- Gitblit v1.9.1