| | |
| | | @TableField("run_block_reassign_loc_station_list") |
| | | private String runBlockReassignLocStationList; |
| | | |
| | | /** |
| | | * 出库排序交互点 |
| | | */ |
| | | @ApiModelProperty(value= "出库排序交互点") |
| | | @TableField("is_out_order_list") |
| | | private String isOutOrderList; |
| | | |
| | | /** |
| | | * 顶升移栽点 |
| | | */ |
| | | @ApiModelProperty(value= "顶升移栽点") |
| | | @TableField("is_lift_transfer_list") |
| | | private String isLiftTransferList; |
| | | |
| | | public BasDevp() {} |
| | | |
| | | public BasDevp(Integer devpNo,Integer status,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo,String stationList,String barcodeStationList,String inStationList,String outStationList) { |
| | |
| | | return list; |
| | | } |
| | | |
| | | public List<StationObjModel> getOutOrderList$(){ |
| | | List<StationObjModel> list = new ArrayList<>(); |
| | | if (Cools.isEmpty(this.isOutOrderList)){ |
| | | return list; |
| | | } |
| | | |
| | | List<StationObjModel> jsonList = JSON.parseArray(this.isOutOrderList, StationObjModel.class); |
| | | for (StationObjModel json : jsonList){ |
| | | list.add(json); |
| | | } |
| | | return list; |
| | | } |
| | | |
| | | public List<Integer> getOutOrderIntList(){ |
| | | List<Integer> list = new ArrayList<>(); |
| | | if (Cools.isEmpty(this.isOutOrderList)){ |
| | | return list; |
| | | } |
| | | |
| | | List<StationObjModel> jsonList = JSON.parseArray(this.isOutOrderList, StationObjModel.class); |
| | | for (StationObjModel json : jsonList){ |
| | | list.add(json.getStationId()); |
| | | } |
| | | return list; |
| | | } |
| | | |
| | | public List<StationObjModel> getLiftTransferList$(){ |
| | | List<StationObjModel> list = new ArrayList<>(); |
| | | if (Cools.isEmpty(this.isLiftTransferList)){ |
| | | return list; |
| | | } |
| | | |
| | | List<StationObjModel> jsonList = JSON.parseArray(this.isLiftTransferList, StationObjModel.class); |
| | | for (StationObjModel json : jsonList){ |
| | | list.add(json); |
| | | } |
| | | return list; |
| | | } |
| | | |
| | | } |