#
Junjie
昨天 8dc960dd9fda130ff19faaafed6b1234e622610b
src/main/java/com/zy/asrs/entity/BasCrnp.java
@@ -1,5 +1,6 @@
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;
@@ -184,4 +185,17 @@
        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;
    }
}