Merge branch 'dev'
commit
9b89e652d7
@ -0,0 +1,43 @@
|
|||||||
|
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 javax.validation.constraints.Size;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
@Schema(name = "JudgeStdDto", description = "심사기준적용DTO")
|
||||||
|
@Getter
|
||||||
|
@Setter
|
||||||
|
@AllArgsConstructor
|
||||||
|
@NoArgsConstructor
|
||||||
|
public class JudgeStdDto {
|
||||||
|
|
||||||
|
@Schema(required = true, title = "데이타구분", example = " ", description = "데이타구분")
|
||||||
|
private String dataGb;
|
||||||
|
|
||||||
|
@Schema(required = true, title = "심사기준(명수)", example = "", description = "4")
|
||||||
|
private int judgeStdCnt;
|
||||||
|
|
||||||
|
@Schema(required = true, title = "심사대상키목록", example = "", description = "")
|
||||||
|
private List<Map<String, Object>> judgeDataKeys;
|
||||||
|
//private List<Map<String, Object>> judgeDataKeys;
|
||||||
|
|
||||||
|
static class JudgeDataKey {
|
||||||
|
@Schema(title = "민원코드", example = " ", description = "민원코드")
|
||||||
|
private Long msMaincode;
|
||||||
|
@Schema(title = "접수번호", example = " ", description = "접수번호")
|
||||||
|
private String msSeq;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//class JudgeDataKey {
|
||||||
|
// @Schema(title = "민원코드", example = " ", description = "민원코드")
|
||||||
|
// private Long msMaincode;
|
||||||
|
// @Schema(title = "접수번호", example = " ", description = "접수번호")
|
||||||
|
// private String msSeq;
|
||||||
|
//}
|
Loading…
Reference in New Issue