| | |
| | | @TableField("out_station_list") |
| | | private String outStationList; |
| | | |
| | | /** |
| | | * 运行堵塞重新分配库位站点数据 |
| | | */ |
| | | @ApiModelProperty(value= "运行堵塞重新分配库位站点数据") |
| | | @TableField("run_block_reassign_loc_station_list") |
| | | private String runBlockReassignLocStationList; |
| | | |
| | | /** |
| | | * 顶升移栽站点数据 |
| | | */ |
| | | @ApiModelProperty(value= "顶升移栽站点数据") |
| | | @TableField("lift_transfer_station_list") |
| | | private String liftTransferStationList; |
| | | |
| | | 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> getRunBlockReassignLocStationList$(){ |
| | | List<StationObjModel> list = new ArrayList<>(); |
| | | if (Cools.isEmpty(this.runBlockReassignLocStationList)){ |
| | | return list; |
| | | } |
| | | |
| | | List<StationObjModel> jsonList = JSON.parseArray(this.runBlockReassignLocStationList, StationObjModel.class); |
| | | for (StationObjModel json : jsonList){ |
| | | list.add(json); |
| | | } |
| | | return list; |
| | | } |
| | | |
| | | } |