|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
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;
|
|
|
|
@ -7,137 +8,87 @@ import lombok.NoArgsConstructor;
|
|
|
|
|
import lombok.Setter;
|
|
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
|
|
|
|
import java.time.LocalDate;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
@Schema(name = "ResidentTargetDto", description = "")
|
|
|
|
|
@Getter
|
|
|
|
|
@Setter
|
|
|
|
|
@AllArgsConstructor
|
|
|
|
|
@NoArgsConstructor
|
|
|
|
|
public class ResidentTargetDto {
|
|
|
|
|
@Schema(required = true, title = " ", example = " ", description = " ")
|
|
|
|
|
@Schema(title = "메인코드", example = " ", description = "메인코드")
|
|
|
|
|
private Long scCode;
|
|
|
|
|
|
|
|
|
|
@Schema(required = true, title = " ", example = " ", description = " ")
|
|
|
|
|
@Schema(title = "접수번호", example = " ", description = "접수번호")
|
|
|
|
|
private Long scSeq;
|
|
|
|
|
|
|
|
|
|
@Schema(required = true, title = " ", example = " ", description = " ")
|
|
|
|
|
@Schema(title = "차량번호", example = " ", description = "차량번호")
|
|
|
|
|
private String scCarnum;
|
|
|
|
|
|
|
|
|
|
@Schema(required = true, title = " ", example = " ", description = " ")
|
|
|
|
|
@Schema(title = "이름", example = " ", description = "")
|
|
|
|
|
private String scName;
|
|
|
|
|
|
|
|
|
|
@Schema(required = true, title = " ", example = " ", description = " ")
|
|
|
|
|
private String scDong;
|
|
|
|
|
|
|
|
|
|
@Schema(required = true, title = " ", example = " ", description = " ")
|
|
|
|
|
@Schema(title = "진술유형코드", example = " ", description = "Input Description...")
|
|
|
|
|
private String scContDoc;
|
|
|
|
|
|
|
|
|
|
@Schema(required = true, title = " ", example = " ", description = " ")
|
|
|
|
|
private String scCdate;
|
|
|
|
|
@Schema(title = "진술유형코드명", example = " ", description = "Input Description...")
|
|
|
|
|
private String scContDocNm;
|
|
|
|
|
|
|
|
|
|
@Schema(required = true, title = " ", example = " ", description = " ")
|
|
|
|
|
@Schema(title = "접수방법코드", example = " ", description = "Input 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 = "Input Description...")
|
|
|
|
|
private String scIngbNm;
|
|
|
|
|
|
|
|
|
|
@Schema(title = " ", example = " ", description = " ")
|
|
|
|
|
private String scPicad4;
|
|
|
|
|
@Schema(title = "접수일자", example = " ", description = "Input Description...")
|
|
|
|
|
private String scCdate;
|
|
|
|
|
|
|
|
|
|
@Schema(required = true, title = " ", example = " ", description = " ")
|
|
|
|
|
@Schema(title = "전송상태-심사", example = "1", description = "전송상태-1:미전송(미심사), 2:전송(심사)")
|
|
|
|
|
private String scTransfer;
|
|
|
|
|
|
|
|
|
|
@Schema(required = true, title = " ", example = " ", description = " ")
|
|
|
|
|
@Schema(title = "데이타구분", example = "1", description = "데이타구분: 1-거주자,2-장애인")
|
|
|
|
|
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 = "2022-03-23", description = "Input Description...")
|
|
|
|
|
@JsonFormat(pattern="yyyy-MM-dd")
|
|
|
|
|
private LocalDate msSdate;
|
|
|
|
|
|
|
|
|
|
@Schema(title = " ", example = " ", description = " ")
|
|
|
|
|
private String zipcode2;
|
|
|
|
|
@Schema(title = "심사시작시간", example = " ", description = "Input Description...")
|
|
|
|
|
private String msStartsi;
|
|
|
|
|
|
|
|
|
|
@Schema(title = " ", example = " ", description = " ")
|
|
|
|
|
private String scJuso;
|
|
|
|
|
@Schema(title = "심사종료일", example = "2022-03-24", description = "Input Description...")
|
|
|
|
|
@JsonFormat(pattern="yyyy-MM-dd")
|
|
|
|
|
private LocalDate msEdate;
|
|
|
|
|
|
|
|
|
|
@Schema(title = " ", example = " ", description = " ")
|
|
|
|
|
private String scBunji;
|
|
|
|
|
@Schema(title = "심사마감일", example = "2022-03-25", description = "Input Description...")
|
|
|
|
|
@JsonFormat(pattern="yyyy-MM-dd")
|
|
|
|
|
private LocalDate msCdate;
|
|
|
|
|
|
|
|
|
|
@Schema(required = true, title = " ", example = " ", description = " ")
|
|
|
|
|
private String scContDocNm;
|
|
|
|
|
|
|
|
|
|
@Schema(required = true, title = " ", example = " ", description = " ")
|
|
|
|
|
private String scIngbNm;
|
|
|
|
|
@Schema(title = "심사마감시간", example = " ", description = "Input Description...")
|
|
|
|
|
private String msClosesi;
|
|
|
|
|
|
|
|
|
|
@Schema(required = true, title = " ", example = " ", description = " ")
|
|
|
|
|
private String scTransferNm;
|
|
|
|
|
@Schema(title = "접수번호", example = " ", description = "Input Description...")
|
|
|
|
|
private Long scSeq1;
|
|
|
|
|
|
|
|
|
|
@Schema(required = true, title = " ", example = " ", description = " ")
|
|
|
|
|
private String scStateNm;
|
|
|
|
|
@Schema(title = "접수번호", example = " ", description = "Input Description...")
|
|
|
|
|
private Long scSeq2;
|
|
|
|
|
|
|
|
|
|
@Schema(required = false, title = "단속사진파일", example = " ", description = "단속사진파일")
|
|
|
|
|
private MultipartFile[] picadFiles;
|
|
|
|
|
@Schema(title = "민원코드목록", example = " ", description = "등록할 민원코드목록")
|
|
|
|
|
private List<Long> scCodes;
|
|
|
|
|
|
|
|
|
|
@Schema(required = false, title = "진술서파일", example = " ", description = "진술서파일")
|
|
|
|
|
private MultipartFile[] frecadFiles;
|
|
|
|
|
@Schema(title = "년도", example = "2022", description = "년도(심사시작일기준)")
|
|
|
|
|
private String msYear;
|
|
|
|
|
|
|
|
|
|
@Schema(required = false, title = "첨부자료파일", example = " ", description = "첨부자료파일")
|
|
|
|
|
private MultipartFile[] contadFiles;
|
|
|
|
|
@Schema(title = "결과코드", example = "0", description = "결과코드")
|
|
|
|
|
private String msResult;
|
|
|
|
|
|
|
|
|
|
@Schema(title = "", example = "0", description = "결과코드")
|
|
|
|
|
private Long msChasu;
|
|
|
|
|
|
|
|
|
|
@Schema(title = "팀코드", example = "001", description = "팀코드")
|
|
|
|
|
private String msuTeam;
|
|
|
|
|
}
|
|
|
|
|