|
|
|
@ -103,6 +103,13 @@ public class ResidentAndDisabledService implements IResidentAndDisabledService {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
@Transactional
|
|
|
|
|
public void removeJudgeData(final Long scCode){
|
|
|
|
|
gnReacallRepository.deleteById(scCode);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void setFileInfoAndFileUpload(GnRecallScDto dto, MultipartFile[] mfs, String setMethodName) {
|
|
|
|
|
String makePath = fileService.uploadFiles(mfs, rootPath, CtgyConstants.Judge.DATAGB_RESIDENT.getCode().equals(dto.getScDatagb())? uploadPath[0] : uploadPath[1]);
|
|
|
|
|
makePath = makePath + File.separator;
|
|
|
|
@ -175,6 +182,7 @@ public class ResidentAndDisabledService implements IResidentAndDisabledService {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
@Transactional(readOnly = true)
|
|
|
|
|
public Page<JudgeListDto> findJudges(JudgeListDto dto, Pageable pageable) {
|
|
|
|
|
|
|
|
|
|
pageable = JpaUtil.getPagingInfo(pageable);
|
|
|
|
@ -182,6 +190,7 @@ public class ResidentAndDisabledService implements IResidentAndDisabledService {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
@Transactional(readOnly = true)
|
|
|
|
|
public Map<String,Object> findJudgeResults(JudgeListDto dto) {
|
|
|
|
|
Map<String, Object> resultMap = new HashMap<>();
|
|
|
|
|
|
|
|
|
|