|
|
|
@ -286,13 +286,13 @@ public class ResidentAndDisabledService implements IResidentAndDisabledService {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//@Transactional(readOnly = true)
|
|
|
|
|
public Map<String,Object> findDashboard(){
|
|
|
|
|
public Map<String,Object> findDashboard(MinUserinfoDto dto){
|
|
|
|
|
Map<String, Object> resultMap = new HashMap<>();
|
|
|
|
|
|
|
|
|
|
resultMap.put("pBoardList", publicBoardDao.findAll(new MinInfoBoard680Dto(), PageRequest.of(0, 7)));
|
|
|
|
|
resultMap.put("parkJudgeList", parkingDao.findDashboardJudgeList());
|
|
|
|
|
resultMap.put("residentJudgeList", residentAndDisabledDao.findDashboardJudgeList(CtgyConstants.Judge.DATAGB_RESIDENT.getCode()));
|
|
|
|
|
resultMap.put("disabledJudgeList", residentAndDisabledDao.findDashboardJudgeList(CtgyConstants.Judge.DATAGB_DISABLED.getCode()));
|
|
|
|
|
resultMap.put("parkJudgeList", parkingDao.findDashboardJudgeList(dto));
|
|
|
|
|
resultMap.put("residentJudgeList", residentAndDisabledDao.findDashboardJudgeList(CtgyConstants.Judge.DATAGB_RESIDENT.getCode(), dto));
|
|
|
|
|
resultMap.put("disabledJudgeList", residentAndDisabledDao.findDashboardJudgeList(CtgyConstants.Judge.DATAGB_DISABLED.getCode(), dto));
|
|
|
|
|
|
|
|
|
|
return resultMap;
|
|
|
|
|
}
|
|
|
|
|