fix: 거주자/장애인 심의대상 상세 목록 fix
parent
ed2d00964e
commit
9b4ec3377b
@ -0,0 +1,68 @@
|
|||||||
|
package com.xit.biz.ctgy.dto;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Getter;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
import lombok.Setter;
|
||||||
|
|
||||||
|
import java.time.LocalDate;
|
||||||
|
|
||||||
|
@Schema(name = "JudgeDetailDto", description = "심사등록상세")
|
||||||
|
@Getter
|
||||||
|
@Setter
|
||||||
|
@AllArgsConstructor
|
||||||
|
@NoArgsConstructor
|
||||||
|
public class JudgeDetailDto {
|
||||||
|
|
||||||
|
@Schema(required = true, title = "민원코드", example = " ", description = "민원코드")
|
||||||
|
private Long msMaincode;
|
||||||
|
|
||||||
|
@Schema(required = true, title = "접수번호", example = " ", description = "Input Description...")
|
||||||
|
private String msSeq;
|
||||||
|
|
||||||
|
@Schema(required = true, title = "차량번호", example = " ", description = "Input Description...")
|
||||||
|
private String msCarnum;
|
||||||
|
|
||||||
|
@Schema(required = true, title = "년도", example = " ", description = "Input Description...")
|
||||||
|
private String msYear;
|
||||||
|
|
||||||
|
@Schema(required = true, title = "차수", example = " ", description = "Input Description...")
|
||||||
|
private Long msChasu;
|
||||||
|
|
||||||
|
@Schema(required = true, title = "심사시작일", example = " ", description = "Input Description...")
|
||||||
|
@JsonFormat(pattern="yyyy-MM-dd")
|
||||||
|
private LocalDate msSdate;
|
||||||
|
|
||||||
|
@Schema(required = true, title = "심사시작시간", example = " ", description = "Input Description...")
|
||||||
|
private String msStartsi;
|
||||||
|
|
||||||
|
@Schema(required = true, title = "심사종료일", example = " ", description = "Input Description...")
|
||||||
|
@JsonFormat(pattern="yyyy-MM-dd")
|
||||||
|
private LocalDate msEdate;
|
||||||
|
|
||||||
|
@Schema(required = true, title = "심사마감일", example = " ", description = "Input Description...")
|
||||||
|
@JsonFormat(pattern="yyyy-MM-dd")
|
||||||
|
private LocalDate msCdate;
|
||||||
|
|
||||||
|
@Schema(required = true, title = "심사마감시간", example = " ", description = "Input Description...")
|
||||||
|
private String msClosesi;
|
||||||
|
|
||||||
|
@Schema(required = false, title = "단속일자", example = " ", description = "Input Description...")
|
||||||
|
@JsonFormat(pattern="yyyy-MM-dd")
|
||||||
|
private LocalDate msWdate;
|
||||||
|
|
||||||
|
@Schema(required = false, title = "단속장소", example = " ", description = "Input Description...")
|
||||||
|
private String msPos;
|
||||||
|
|
||||||
|
@Schema(required = false, title = "결과코드", example = " ", description = "Input Description...")
|
||||||
|
private String msResult;
|
||||||
|
|
||||||
|
@Schema(required = false, title = "단속시간", example = " ", description = "Input Description...")
|
||||||
|
private String msJbtime;
|
||||||
|
|
||||||
|
@Schema(title = "데이타구분", example = "1", description = "데이타구분: 1-거주자,2-장애인")
|
||||||
|
private String msDatagb;
|
||||||
|
|
||||||
|
}
|
@ -1,11 +1,45 @@
|
|||||||
package com.xit.biz.ctgy.mapper;
|
package com.xit.biz.ctgy.mapper;
|
||||||
|
|
||||||
|
import com.xit.biz.ctgy.dto.JudgeListDto;
|
||||||
import com.xit.biz.ctgy.dto.JudgeTargetDto;
|
import com.xit.biz.ctgy.dto.JudgeTargetDto;
|
||||||
|
import com.xit.core.support.CamelCaseMap;
|
||||||
|
import org.apache.commons.collections4.map.LinkedMap;
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
|
||||||
|
import java.util.LinkedHashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
@Mapper
|
@Mapper
|
||||||
public interface IResidentAndDisabledMapper {
|
public interface IResidentAndDisabledMapper {
|
||||||
|
|
||||||
void insertJudgeTargetIntoSelect(JudgeTargetDto dto);
|
void insertJudgeTargetIntoSelect(JudgeTargetDto dto);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 팀 && 차수 별 total
|
||||||
|
* @param dto JudgeListDto
|
||||||
|
* @return Map
|
||||||
|
*/
|
||||||
|
Map<String,Object> selectTotByJudgeTeamAndChasu(JudgeListDto dto);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 팀 && 차수 별 심사위원 심사 결과
|
||||||
|
* @param dto JudgeListDto
|
||||||
|
* @return List<Map>
|
||||||
|
*/
|
||||||
|
List<Map<String,Object>> selectTotJudgeUsersByJudgeTeamAndChasu(JudgeListDto dto);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 심사대상 차량 정보 목록
|
||||||
|
* @param dto JudgeListDto
|
||||||
|
* @return List<Map>
|
||||||
|
*/
|
||||||
|
List<Map<String,Object>> selectJudgeTargetByCarnum(JudgeListDto dto);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 차량별 심사위원 심사결과 목록
|
||||||
|
* @param map Map
|
||||||
|
* @return List<Map>
|
||||||
|
*/
|
||||||
|
List<Map<String,Object>> selectJudgeResultByCarnum(Map<String,Object> map);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue