parent
36555df311
commit
57015faeae
@ -0,0 +1,143 @@
|
||||
package com.xit.biz.ctgy.dto;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.Setter;
|
||||
import org.springframework.web.multipart.MultipartFile;
|
||||
|
||||
@Schema(name = "ResidentTargetDto", description = "")
|
||||
@Getter
|
||||
@Setter
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class ResidentTargetDto {
|
||||
@Schema(required = true, title = " ", example = " ", description = " ")
|
||||
private Long scCode;
|
||||
|
||||
@Schema(required = true, title = " ", example = " ", description = " ")
|
||||
private Long scSeq;
|
||||
|
||||
@Schema(required = true, title = " ", example = " ", description = " ")
|
||||
private String scCarnum;
|
||||
|
||||
@Schema(required = true, title = " ", example = " ", description = " ")
|
||||
private String scName;
|
||||
|
||||
@Schema(required = true, title = " ", example = " ", description = " ")
|
||||
private String scDong;
|
||||
|
||||
@Schema(required = true, title = " ", example = " ", description = " ")
|
||||
private String scContDoc;
|
||||
|
||||
@Schema(required = true, title = " ", example = " ", description = " ")
|
||||
private String scCdate;
|
||||
|
||||
@Schema(required = true, title = " ", example = " ", description = " ")
|
||||
private String scIngb;
|
||||
|
||||
@Schema(required = true, title = " ", example = " ", description = " ")
|
||||
private String scWdate;
|
||||
|
||||
@Schema(required = true, title = " ", example = " ", description = " ")
|
||||
private String scJbtime;
|
||||
|
||||
@Schema(required = true, title = " ", example = " ", description = " ")
|
||||
private String scPos;
|
||||
|
||||
@Schema(title = " ", example = " ", description = " ")
|
||||
private String scFrecad1;
|
||||
|
||||
@Schema(title = " ", example = " ", description = " ")
|
||||
private String scFrecad2;
|
||||
|
||||
@Schema(title = " ", example = " ", description = " ")
|
||||
private String scFrecad3;
|
||||
|
||||
@Schema(title = " ", example = " ", description = " ")
|
||||
private String scFrecad4;
|
||||
|
||||
@Schema(title = " ", example = " ", description = " ")
|
||||
private String scContad1;
|
||||
|
||||
@Schema(title = " ", example = " ", description = " ")
|
||||
private String scContad2;
|
||||
|
||||
@Schema(title = " ", example = " ", description = " ")
|
||||
private String scContad3;
|
||||
|
||||
@Schema(title = " ", example = " ", description = " ")
|
||||
private String scContad4;
|
||||
|
||||
@Schema(title = " ", example = " ", description = " ")
|
||||
private String scContad5;
|
||||
|
||||
@Schema(title = " ", example = " ", description = " ")
|
||||
private String scContad6;
|
||||
|
||||
@Schema(title = " ", example = " ", description = " ")
|
||||
private String scContad7;
|
||||
|
||||
@Schema(title = " ", example = " ", description = " ")
|
||||
private String scContad8;
|
||||
|
||||
@Schema(title = " ", example = " ", description = " ")
|
||||
private String scPicad1;
|
||||
|
||||
@Schema(title = " ", example = " ", description = " ")
|
||||
private String scPicad2;
|
||||
|
||||
@Schema(title = " ", example = " ", description = " ")
|
||||
private String scPicad3;
|
||||
|
||||
@Schema(title = " ", example = " ", description = " ")
|
||||
private String scPicad4;
|
||||
|
||||
@Schema(required = true, title = " ", example = " ", description = " ")
|
||||
private String scTransfer;
|
||||
|
||||
@Schema(required = true, title = " ", example = " ", description = " ")
|
||||
private String scDatagb;
|
||||
|
||||
@Schema(title = " ", example = " ", description = " ")
|
||||
private String scAnswer;
|
||||
|
||||
@Schema(required = true, title = " ", example = " ", description = " ")
|
||||
private String scState;
|
||||
|
||||
@Schema(title = " ", example = " ", description = " ")
|
||||
private String zipcode1;
|
||||
|
||||
@Schema(title = " ", example = " ", description = " ")
|
||||
private String zipcode2;
|
||||
|
||||
@Schema(title = " ", example = " ", description = " ")
|
||||
private String scJuso;
|
||||
|
||||
@Schema(title = " ", example = " ", description = " ")
|
||||
private String scBunji;
|
||||
|
||||
@Schema(required = true, title = " ", example = " ", description = " ")
|
||||
private String scContDocNm;
|
||||
|
||||
@Schema(required = true, title = " ", example = " ", description = " ")
|
||||
private String scIngbNm;
|
||||
|
||||
@Schema(required = true, title = " ", example = " ", description = " ")
|
||||
private String scTransferNm;
|
||||
|
||||
@Schema(required = true, title = " ", example = " ", description = " ")
|
||||
private String scStateNm;
|
||||
|
||||
@Schema(required = false, title = "단속사진파일", example = " ", description = "단속사진파일")
|
||||
private MultipartFile[] picadFiles;
|
||||
|
||||
@Schema(required = false, title = "진술서파일", example = " ", description = "진술서파일")
|
||||
private MultipartFile[] frecadFiles;
|
||||
|
||||
@Schema(required = false, title = "첨부자료파일", example = " ", description = "첨부자료파일")
|
||||
private MultipartFile[] contadFiles;
|
||||
|
||||
|
||||
}
|
@ -1,11 +1,11 @@
|
||||
package com.xit.biz.ctgy.mapper;
|
||||
|
||||
import com.xit.biz.ctgy.dto.MinSimsaTargetDto;
|
||||
import com.xit.biz.ctgy.dto.ParkingTargetDto;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface IParkingMapper {
|
||||
|
||||
void insertSimsaTargetIntoSelect(MinSimsaTargetDto dto);
|
||||
void insertSimsaTargetIntoSelect(ParkingTargetDto dto);
|
||||
|
||||
}
|
||||
|
@ -0,0 +1,7 @@
|
||||
package com.xit.biz.ctgy.repository;
|
||||
|
||||
import com.xit.biz.ctgy.entity.MinSimsa680;
|
||||
import org.springframework.data.jpa.repository.JpaRepository;
|
||||
|
||||
public interface IParkingRepository extends JpaRepository<MinSimsa680, Long>, IParkingRepositoryCustom {
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
package com.xit.biz.ctgy.repository;
|
||||
|
||||
import com.xit.biz.ctgy.entity.MinSimsa680;
|
||||
import org.springframework.data.jpa.repository.JpaRepository;
|
||||
import org.springframework.data.jpa.repository.Query;
|
||||
import org.springframework.data.repository.query.Param;
|
||||
|
||||
import javax.annotation.Nonnull;
|
||||
import java.time.LocalDate;
|
||||
|
||||
public interface ISimsaRepository extends JpaRepository<MinSimsa680, Long>, ISimsaRepositoryCustom {
|
||||
}
|
@ -1,28 +1,26 @@
|
||||
package com.xit.biz.ctgy.service;
|
||||
|
||||
import com.xit.biz.ctgy.dto.MinSimsa680GroupDto;
|
||||
import com.xit.biz.ctgy.dto.MinSimsaReviewGroupDto;
|
||||
import com.xit.biz.ctgy.dto.MinSimsaTargetDto;
|
||||
import com.xit.biz.ctgy.dto.ParkingTargetDto;
|
||||
import com.xit.biz.ctgy.entity.MinSimsa680;
|
||||
import org.springframework.data.domain.Page;
|
||||
import org.springframework.data.domain.Pageable;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
public interface IParkingService {
|
||||
|
||||
//Page<MinSimsa680GroupDto> findMinSimsa680Groups(MinSimsa680 minSimsa680, Pageable pageable);
|
||||
Page<MinSimsa680GroupDto> findSimsas(final MinSimsa680GroupDto minSimsa680GroupDto, Pageable pageable);
|
||||
List<MinSimsa680> findSimsaDetails(final MinSimsa680GroupDto minSimsa680GroupDto);
|
||||
List<MinSimsaTargetDto> findSimsaTargets(final MinSimsaTargetDto dto) ;
|
||||
Page<MinSimsa680GroupDto> findParkings(final MinSimsa680GroupDto minSimsa680GroupDto, Pageable pageable);
|
||||
List<MinSimsa680> findParkingDetails(final MinSimsa680GroupDto minSimsa680GroupDto);
|
||||
List<ParkingTargetDto> findParkingTargets(final ParkingTargetDto dto) ;
|
||||
|
||||
Page<MinSimsa680> findAll(final MinSimsa680 minSimsa680, Pageable pageable);
|
||||
// Page<MinSimsa680> findAll(final MinSimsa680 minSimsa680, Pageable pageable);
|
||||
|
||||
List<MinSimsaTargetDto> saveParkingSimsaTargets(MinSimsaTargetDto dto);
|
||||
void saveParkingTargets(ParkingTargetDto dto);
|
||||
|
||||
Page<MinSimsaReviewGroupDto> findMinSimsa680s2(final MinSimsa680 minSimsa680, Pageable pageable);
|
||||
// Page<MinSimsaReviewGroupDto> findMinSimsa680s2(final MinSimsa680 minSimsa680, Pageable pageable);
|
||||
|
||||
MinSimsa680 saveParkingSimsa(final MinSimsa680 toEntity);
|
||||
// MinSimsa680 saveParking(final MinSimsa680 toEntity);
|
||||
|
||||
}
|
||||
|
@ -1,21 +1,22 @@
|
||||
package com.xit.biz.ctgy.service;
|
||||
|
||||
import com.xit.biz.ctgy.dto.GnRecallScDto;
|
||||
import com.xit.biz.ctgy.entity.GnRecallSc;
|
||||
import com.xit.biz.ctgy.dto.ResidentTargetDto;
|
||||
import org.springframework.data.domain.Page;
|
||||
import org.springframework.data.domain.Pageable;
|
||||
import org.springframework.web.multipart.MultipartFile;
|
||||
|
||||
import javax.annotation.Nonnull;
|
||||
import java.util.List;
|
||||
|
||||
public interface IResidentService {
|
||||
|
||||
Page<GnRecallScDto> findResidentDatas(Pageable pageable);
|
||||
|
||||
GnRecallScDto findResident(final Long scCode);
|
||||
GnRecallScDto findResidentData(final Long scCode);
|
||||
|
||||
Page<GnRecallSc> findAll(final GnRecallSc entity, Pageable pageable);
|
||||
//Page<GnRecallSc> findAll(final GnRecallSc entity, Pageable pageable);
|
||||
|
||||
void saveResidentData(GnRecallScDto entity);
|
||||
|
||||
List<ResidentTargetDto> findResidentTargets(final ResidentTargetDto dto) ;
|
||||
void saveResidentTargets(ResidentTargetDto dto);
|
||||
}
|
||||
|
Loading…
Reference in New Issue