| | |
| | | |
| | | public Map<String, Object> getPrintCustomDataProjectNo(String type, String projectNo) { |
| | | Map<String, Object> map = new HashMap<>(); |
| | | List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();//最终结果 |
| | | if (!projectNo.isEmpty()) { |
| | | Map<String, Object> itemmap = new HashMap<>(); |
| | | itemmap.put("data", flowCardMapper.getPrintCustomDataProjectNo(projectNo)); |
| | | list.add(itemmap); |
| | | |
| | | } |
| | | map.put("data", list); |
| | | map.put("data", flowCardMapper.getPrintCustomDataProjectNo(projectNo)); |
| | | map.put("title", flowCardMapper.getPrintTitle(type)); |
| | | return map; |
| | | } |