|
|
|
|
@ -43,21 +43,9 @@ public class BasicRequest {
|
|
|
|
|
@JsonProperty("CHARGER_NM")
|
|
|
|
|
private String chargerNm;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "부과기준일", example = "20250101")
|
|
|
|
|
@JsonProperty("LEVY_STDDE")
|
|
|
|
|
private String levyStdde;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "조회구분코드 (자동설정: VHRNO not null → 3:자동차번호, VIN not null → 2:차대번호)")
|
|
|
|
|
@JsonProperty("INQIRE_SE_CODE")
|
|
|
|
|
private String inqireSeCode;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "자동차등록번호", example = "12가3456")
|
|
|
|
|
@JsonProperty("VHRNO")
|
|
|
|
|
private String vhrno;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "차대번호", example = "KMHAB812345678901")
|
|
|
|
|
@JsonProperty("VIN")
|
|
|
|
|
private String vin;
|
|
|
|
|
@Schema(description = "조회 대상 record 배열")
|
|
|
|
|
@JsonProperty("record")
|
|
|
|
|
private java.util.List<Record> record;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
// 추가 항목 (명세 샘플 기준)
|
|
|
|
|
@ -87,4 +75,26 @@ public class BasicRequest {
|
|
|
|
|
private String detailExpression;
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
@JsonInclude(JsonInclude.Include.NON_NULL)
|
|
|
|
|
@Getter
|
|
|
|
|
@Setter
|
|
|
|
|
@Schema(name = "BasicRequest.Record", description = "기본사항 요청 record 항목")
|
|
|
|
|
public static class Record {
|
|
|
|
|
@Schema(description = "부과기준일", example = "20250101")
|
|
|
|
|
@JsonProperty("LEVY_STDDE")
|
|
|
|
|
private String levyStdde;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "조회구분코드 (자동설정: VHRNO not null → 3:자동차번호, VIN not null → 2:차대번호)")
|
|
|
|
|
@JsonProperty("INQIRE_SE_CODE")
|
|
|
|
|
private String inqireSeCode;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "자동차등록번호", example = "12가3456")
|
|
|
|
|
@JsonProperty("VHRNO")
|
|
|
|
|
private String vhrno;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "차대번호", example = "KMHAB812345678901")
|
|
|
|
|
@JsonProperty("VIN")
|
|
|
|
|
private String vin;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|