| | |
| | | package com.zy.asrs.entity; |
| | | |
| | | import com.alibaba.fastjson.JSONArray; |
| | | import com.core.common.Cools; |
| | | import com.zy.core.model.StationObjModel; |
| | | import com.baomidou.mybatisplus.annotations.TableId; |
| | |
| | | return list; |
| | | } |
| | | |
| | | public List<List<Integer>> getControlRows$(){ |
| | | List<List<Integer>> rowList = new ArrayList<>(); |
| | | if(Cools.isEmpty(this.controlRows)){ |
| | | return rowList; |
| | | } |
| | | JSONArray list = JSON.parseArray(this.controlRows); |
| | | for (Object o : list) { |
| | | List<Integer> rows = JSON.parseArray(JSON.toJSONString(o), Integer.class); |
| | | rowList.add(rows); |
| | | } |
| | | return rowList; |
| | | } |
| | | |
| | | } |