src/main/java/com/zy/asrs/entity/Pack.java
@@ -61,7 +61,7 @@ private Long settle; /** * 状态 1: 正常 0: 禁用 * 状态 1: 正常 0: 禁用 */ @ApiModelProperty(value= "状态 1: 正常 0: 禁用 ") private Integer status; @@ -120,7 +120,7 @@ // Pack pack = new Pack( // null, // 条码[非空] // null, // 商品编号 // null, // 批号 // null, // 序列码 // null, // 订单状态 // null, // 状态 // null, // 添加时间 @@ -143,9 +143,9 @@ if (null == this.status){ return null; } switch (this.status){ case 1: return "正常"; return "Нормально"; case 0: return "禁用"; return "Заблокировано"; default: return String.valueOf(this.status); }