src/main/java/com/zy/asrs/entity/LocMast.java
@@ -176,6 +176,11 @@ @TableField("ctn_no") private String ctnNo; /** * 是否冻结 */ @ApiModelProperty(value= "是否冻结") private Integer frozen; public String getWhsType$(){ BasWhsService service = SpringUtils.getBean(BasWhsService.class); @@ -290,4 +295,15 @@ return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.errorTime); } public String getFrozen$() { if (null == this.frozen){ return null; } switch (this.frozen){ case 0: return ""; case 1: return "已冻结"; default: return null; } } }