feat: 주정차 심의 상세 반영
parent
a0a2a5a768
commit
82ea5cda78
@ -1,11 +1,42 @@
|
|||||||
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.ParkingTargetDto;
|
import com.xit.biz.ctgy.dto.ParkingTargetDto;
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
@Mapper
|
@Mapper
|
||||||
public interface IParkingMapper {
|
public interface IParkingMapper {
|
||||||
|
|
||||||
void insertParkingJudgeTargetIntoSelect(ParkingTargetDto dto);
|
void insertParkingJudgeTargetIntoSelect(ParkingTargetDto dto);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 팀 && 차수 별 total
|
||||||
|
* @param dto JudgeListDto
|
||||||
|
* @return Map
|
||||||
|
*/
|
||||||
|
Map<String,Object> selectTotByParkingJurgeTeamAndChasu(JudgeListDto dto);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 팀 && 차수 별 심사위원 심사 결과
|
||||||
|
* @param dto JudgeListDto
|
||||||
|
* @return List<Map>
|
||||||
|
*/
|
||||||
|
List<Map<String,Object>> selectTotParkingUsersByJudgeTeamAndChasu(JudgeListDto dto);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 심사대상 차량 정보 목록
|
||||||
|
* @param dto JudgeListDto
|
||||||
|
* @return List<Map>
|
||||||
|
*/
|
||||||
|
List<Map<String,Object>> selectParkingJurgeTargetByCarnum(JudgeListDto dto);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 차량별 심사위원 심사결과 목록
|
||||||
|
* @param map Map
|
||||||
|
* @return List<Map>
|
||||||
|
*/
|
||||||
|
List<Map<String,Object>> selectParkingJudgeResultByCarnum(Map<String,Object> map);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue