From d867d8d14b00e20ecfb00e349611ea62c4853c78 Mon Sep 17 00:00:00 2001 From: Junjie <fallin.jie@qq.com> Date: 星期五, 24 三月 2023 10:16:53 +0800 Subject: [PATCH] 四向穿梭车通讯协议代码部分 --- src/main/java/com/zy/asrs/entity/WrkMast.java | 21 ++++++++++++++++++++- 1 files changed, 20 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..1f7a1bd 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") @@ -491,4 +498,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