You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
883 B
Java
43 lines
883 B
Java
package go.kr.project.api.vo;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import lombok.Builder;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
/**
|
|
* 자동차 등록원부(갑) 조회 요청 VO
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
@Builder
|
|
public class VehicleLedgerRequestVO {
|
|
|
|
@JsonProperty("INFO_SYS_ID")
|
|
private String infoSysId;
|
|
|
|
@JsonProperty("INFO_SYS_IP")
|
|
private String infoSysIp;
|
|
|
|
@JsonProperty("SIGUNGU_CODE")
|
|
private String sigunguCode;
|
|
|
|
@JsonProperty("CNTC_INFO_CODE")
|
|
private String cntcInfoCode;
|
|
|
|
@JsonProperty("CHARGER_ID")
|
|
private String chargerId;
|
|
|
|
@JsonProperty("CHARGER_IP")
|
|
private String chargerIp;
|
|
|
|
@JsonProperty("CHARGER_NM")
|
|
private String chargerNm;
|
|
|
|
@JsonProperty("VHRNO")
|
|
private String vhrno; // 차량번호
|
|
|
|
@JsonProperty("ONES_INFORMATION_OPEN")
|
|
private String onesInformationOpen;
|
|
}
|