| | |
| | | return rowList; |
| | | } |
| | | |
| | | public List<Integer> getDisableStationOneBays$(){ |
| | | List<Integer> list = new ArrayList<>(); |
| | | if (Cools.isEmpty(this.disableStationOneBays)){ |
| | | return list; |
| | | } |
| | | |
| | | List<Integer> jsonList = JSON.parseArray(this.disableStationOneBays, Integer.class); |
| | | list.addAll(jsonList); |
| | | return list; |
| | | } |
| | | |
| | | public List<Integer> getDisableStationTwoBays$(){ |
| | | List<Integer> list = new ArrayList<>(); |
| | | if (Cools.isEmpty(this.disableStationTwoBays)){ |
| | | return list; |
| | | } |
| | | |
| | | List<Integer> jsonList = JSON.parseArray(this.disableStationTwoBays, Integer.class); |
| | | list.addAll(jsonList); |
| | | return list; |
| | | } |
| | | |
| | | } |