parent
2bfc67d5e3
commit
81320104c9
@ -0,0 +1,50 @@
|
|||||||
|
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 org.apache.ibatis.type.Alias;
|
||||||
|
|
||||||
|
import java.time.LocalDate;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Schema(name = "JudgeResultDto", description = "심사결과")
|
||||||
|
@Getter
|
||||||
|
@Setter
|
||||||
|
@AllArgsConstructor
|
||||||
|
@NoArgsConstructor
|
||||||
|
public class JudgeResultDto {
|
||||||
|
|
||||||
|
@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 = false, title = "결과코드", example = " ", description = "Input Description...")
|
||||||
|
private String msResult;
|
||||||
|
|
||||||
|
List<JudgeResultUserDto> judgeResultUserDtoList;
|
||||||
|
|
||||||
|
// @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...")
|
||||||
|
// @JsonFormat(pattern="yyyy-MM-dd")
|
||||||
|
// private LocalDate msEdate;
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// @Schema(title = "데이타구분", example = "1", description = "데이타구분: 1-거주자,2-장애인")
|
||||||
|
// private String msDatagb;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,29 @@
|
|||||||
|
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 org.apache.ibatis.type.Alias;
|
||||||
|
|
||||||
|
import java.time.LocalDate;
|
||||||
|
|
||||||
|
@Schema(name = "JudgeResultUserDto", description = "심사결과사용자")
|
||||||
|
@Getter
|
||||||
|
@Setter
|
||||||
|
@AllArgsConstructor
|
||||||
|
@NoArgsConstructor
|
||||||
|
public class JudgeResultUserDto {
|
||||||
|
|
||||||
|
@Schema(required = true, title = "민원코드", example = " ", description = "민원코드")
|
||||||
|
private Long msuMaincode;
|
||||||
|
|
||||||
|
@Schema(required = false, title = "결과코드", example = " ", description = "Input Description...")
|
||||||
|
private String msuResult;
|
||||||
|
|
||||||
|
@Schema(required = false, title = "단속시간", example = " ", description = "Input Description...")
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue