|
|
|
@ -257,7 +257,7 @@ public class NimsApiRequest {
|
|
|
|
|
* 빈값 : 전체
|
|
|
|
|
* 0: 신규, 1: 취소, 2: 변경
|
|
|
|
|
*/
|
|
|
|
|
@Schema(title = "보고유형('': 전체, 0:신규, 1:취소, 2:변경)", description = "보고유형('': 전체, 0:신규, 1:취소, 2:변경)", example = " ", allowableValues = {"", "0", "1", "2"})
|
|
|
|
|
@Schema(title = "보고유형('': 전체, 0:신규, 1:취소, 2:변경)", description = "보고유형('': 전체, 0:신규, 1:취소, 2:변경)", example = "0", allowableValues = {"", "0", "1", "2"})
|
|
|
|
|
@Pattern(regexp = "^$|[012]", message = "보고유형 값을 확인해 주세요('': 전체, 0:신규, 1:취소, 2:변경)")
|
|
|
|
|
String fg2;
|
|
|
|
|
|
|
|
|
@ -274,7 +274,7 @@ public class NimsApiRequest {
|
|
|
|
|
* 조회 시작일(yyyyMMdd)
|
|
|
|
|
* 최대 1개월
|
|
|
|
|
*/
|
|
|
|
|
@Schema(title = "조회 시작일(yyyyMMdd)", description = "조회 시작일(yyyyMMdd)", example = "20240101")
|
|
|
|
|
@Schema(title = "조회 시작일(yyyyMMdd)", description = "조회 시작일(yyyyMMdd)", example = "20240105")
|
|
|
|
|
@Pattern(regexp = Constants.DATE_REGX, message = "조회 시작일은 필수 입니다(yyyyMMdd)")
|
|
|
|
|
String sdt;
|
|
|
|
|
|
|
|
|
@ -282,7 +282,7 @@ public class NimsApiRequest {
|
|
|
|
|
* 조회 종료일(yyyyMMdd)
|
|
|
|
|
* 최대 1개월
|
|
|
|
|
*/
|
|
|
|
|
@Schema(title = "조회 종료일(yyyyMMdd)", description = "조회 종료일(yyyyMMdd)", example = "20240131")
|
|
|
|
|
@Schema(title = "조회 종료일(yyyyMMdd)", description = "조회 종료일(yyyyMMdd)", example = "20240105")
|
|
|
|
|
@Pattern(regexp = Constants.DATE_REGX, message = "조회 종료일은 필수 입니다(yyyyMMdd)")
|
|
|
|
|
String edt;
|
|
|
|
|
|
|
|
|
@ -308,7 +308,7 @@ public class NimsApiRequest {
|
|
|
|
|
* 폐기 보고 상태
|
|
|
|
|
* 01: 확인, 02: 보류, 03: 정정, 04: 미처리
|
|
|
|
|
*/
|
|
|
|
|
@Schema(title = "상태", description = "상태", example = " ", allowableValues = {"01", "02", "03", "04"})
|
|
|
|
|
@Schema(title = "상태", description = "상태", example = "01", allowableValues = {"01", "02", "03", "04"})
|
|
|
|
|
@Pattern(regexp = "^$|0[1-4]", message = "상태[폐기보고] 값을 확인해 주세요('': 전체, 01:확인, 02:보류, 03:정정, 04:미처리)")
|
|
|
|
|
String ps;
|
|
|
|
|
|
|
|
|
|