Commit 58edd687 by 宋振民

feat:病组跨科室查询

parent 26426cd4
...@@ -10,7 +10,7 @@ public interface BlockValuesMapper { ...@@ -10,7 +10,7 @@ public interface BlockValuesMapper {
List<Map<String,Object>> selectByWhereNew(Map<String,String> map); List<Map<String,Object>> selectByWhereNew(Map<String,String> map);
List<SerCustomPageField> selectCustomBlockInd(); List<SerCustomPageField> selectCustomBlockInd(Integer pageCode);
int selectCustomBlockState(); int selectCustomBlockState();
} }
...@@ -164,7 +164,7 @@ public class BlockValuesServiceImpl implements BlockValuesService { ...@@ -164,7 +164,7 @@ public class BlockValuesServiceImpl implements BlockValuesService {
@Override @Override
public Map<String,List> getCustomBlockValuesByPageCode(Long userId, Integer pageCode, Map<String, String> dim) throws InterruptedException { public Map<String,List> getCustomBlockValuesByPageCode(Long userId, Integer pageCode, Map<String, String> dim) throws InterruptedException {
Map resultMap = new HashMap(); Map resultMap = new HashMap();
List<SerCustomPageField> indList = blockValuesMapper.selectCustomBlockInd(); List<SerCustomPageField> indList = blockValuesMapper.selectCustomBlockInd(pageCode);
resultMap.put("titles",indList); resultMap.put("titles",indList);
return resultMap; return resultMap;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment