Commit 58edd687 by 宋振民

feat:病组跨科室查询

parent 26426cd4
......@@ -10,7 +10,7 @@ public interface BlockValuesMapper {
List<Map<String,Object>> selectByWhereNew(Map<String,String> map);
List<SerCustomPageField> selectCustomBlockInd();
List<SerCustomPageField> selectCustomBlockInd(Integer pageCode);
int selectCustomBlockState();
}
......@@ -164,7 +164,7 @@ public class BlockValuesServiceImpl implements BlockValuesService {
@Override
public Map<String,List> getCustomBlockValuesByPageCode(Long userId, Integer pageCode, Map<String, String> dim) throws InterruptedException {
Map resultMap = new HashMap();
List<SerCustomPageField> indList = blockValuesMapper.selectCustomBlockInd();
List<SerCustomPageField> indList = blockValuesMapper.selectCustomBlockInd(pageCode);
resultMap.put("titles",indList);
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