feat: 거주자심의 반영
parent
29fa93e2fe
commit
bf04e4499e
@ -1,19 +0,0 @@
|
|||||||
package com.xit.biz.ctgy.dto;
|
|
||||||
|
|
||||||
import com.querydsl.core.annotations.QueryProjection;
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
|
||||||
import lombok.*;
|
|
||||||
|
|
||||||
import java.sql.Date;
|
|
||||||
|
|
||||||
@Schema(name = "MinSimsaReviewGroupDto", description = "심사자 조회")
|
|
||||||
@Getter
|
|
||||||
@AllArgsConstructor
|
|
||||||
@NoArgsConstructor
|
|
||||||
public class MinSimsaReviewGroupDto {
|
|
||||||
private Date msEdate;
|
|
||||||
private String msuTeam;
|
|
||||||
private String name;
|
|
||||||
private Long clcnt;
|
|
||||||
private Long totcnt;
|
|
||||||
}
|
|
@ -1,12 +1,12 @@
|
|||||||
package com.xit.biz.ctgy.dto.struct;
|
package com.xit.biz.ctgy.dto.struct;
|
||||||
|
|
||||||
import com.xit.biz.ctgy.dto.SimsaListDto;
|
import com.xit.biz.ctgy.dto.JudgeListDto;
|
||||||
import com.xit.biz.ctgy.entity.MinSimsa680;
|
import com.xit.biz.ctgy.entity.MinSimsa680;
|
||||||
import com.xit.core.support.jpa.mapstruct.IMapstruct;
|
import com.xit.core.support.jpa.mapstruct.IMapstruct;
|
||||||
import com.xit.core.support.jpa.mapstruct.MapStructMapperConfig;
|
import com.xit.core.support.jpa.mapstruct.MapStructMapperConfig;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
|
|
||||||
@Mapper(config = MapStructMapperConfig.class)
|
@Mapper(config = MapStructMapperConfig.class)
|
||||||
public interface MinSimsa680GroupMapstruct extends IMapstruct<SimsaListDto, MinSimsa680> {
|
public interface JudgeListMapstruct extends IMapstruct<JudgeListDto, MinSimsa680> {
|
||||||
|
|
||||||
}
|
}
|
@ -1,15 +1,20 @@
|
|||||||
package com.xit.biz.ctgy.repository;
|
package com.xit.biz.ctgy.repository;
|
||||||
|
|
||||||
import com.xit.biz.ctgy.dto.GnRecallScDto;
|
import com.xit.biz.ctgy.dto.GnRecallScDto;
|
||||||
import com.xit.biz.ctgy.dto.SimsaListDto;
|
import com.xit.biz.ctgy.dto.JudgeListDto;
|
||||||
|
import com.xit.biz.ctgy.dto.ResidentTargetDto;
|
||||||
import org.springframework.data.domain.Page;
|
import org.springframework.data.domain.Page;
|
||||||
import org.springframework.data.domain.Pageable;
|
import org.springframework.data.domain.Pageable;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
public interface IResidentRepositoryCustom {
|
public interface IResidentRepositoryCustom {
|
||||||
Page<GnRecallScDto> findResidentDatas(Pageable pageable);
|
Page<GnRecallScDto> findResidentDatas(Pageable pageable);
|
||||||
|
|
||||||
GnRecallScDto findResident(final Long scCode);
|
GnRecallScDto findResident(final Long scCode);
|
||||||
|
|
||||||
Page<SimsaListDto> findResidents(SimsaListDto dto, Pageable pageable);
|
Page<JudgeListDto> findResidents(JudgeListDto dto, Pageable pageable);
|
||||||
|
|
||||||
|
List<ResidentTargetDto> findResidentJudgeTargets(final ResidentTargetDto dto);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue