| | |
| | | import com.baomidou.mybatisplus.annotations.TableId; |
| | | import com.baomidou.mybatisplus.annotations.TableName; |
| | | import com.baomidou.mybatisplus.enums.IdType; |
| | | import com.baomidou.mybatisplus.enums.FieldStrategy; |
| | | import com.zy.asrs.service.*; |
| | | import com.zy.system.entity.User; |
| | | import com.zy.system.service.UserService; |
| | |
| | | private String taskType; |
| | | |
| | | @ApiModelProperty("任务编码") |
| | | @TableField("wrk_code") |
| | | @TableField(value = "wrk_code", strategy = FieldStrategy.IGNORED) |
| | | private String wrkCode; |
| | | |
| | | @ApiModelProperty(value= "") |
| | |
| | | @TableField("ctn_no") |
| | | private String ctnNo; |
| | | |
| | | @ApiModelProperty("是否余料") |
| | | @TableField("is_suplus") |
| | | private Integer isSuplus; |
| | | |
| | | /** |
| | | * 满板 |
| | | */ |
| | |
| | | } |
| | | } |
| | | |
| | | public String getIsSuplus$(){ |
| | | if (Cools.isEmpty(this.isSuplus)){return null;} |
| | | if (isSuplus == 0) { |
| | | return "空板回库"; |
| | | } else { |
| | | return "余料回库"; |
| | | } |
| | | } |
| | | |
| | | |
| | | public String getStaNo$(){ |
| | | BasDevpService service = SpringUtils.getBean(BasDevpService.class); |