com.alipay.api.domain.AlipayInsDataDsbEstimateQueryModel Maven / Gradle / Ivy
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 定损宝查询图像定损结果
*
* @author auto create
* @since 1.0, 2022-11-21 15:17:13
*/
public class AlipayInsDataDsbEstimateQueryModel extends AlipayObject {
private static final long serialVersionUID = 3766568548551957244L;
/**
* 定损单号
*/
@ApiField("estimate_no")
private String estimateNo;
/**
* 车架号
*/
@ApiField("frame_no")
private String frameNo;
/**
* 修理厂类型,枚举如下。
4S-4S店
GENERAL-综合修理厂
*/
@ApiField("garage_type")
private String garageType;
/**
* 车牌号
*/
@ApiField("license_no")
private String licenseNo;
public String getEstimateNo() {
return this.estimateNo;
}
public void setEstimateNo(String estimateNo) {
this.estimateNo = estimateNo;
}
public String getFrameNo() {
return this.frameNo;
}
public void setFrameNo(String frameNo) {
this.frameNo = frameNo;
}
public String getGarageType() {
return this.garageType;
}
public void setGarageType(String garageType) {
this.garageType = garageType;
}
public String getLicenseNo() {
return this.licenseNo;
}
public void setLicenseNo(String licenseNo) {
this.licenseNo = licenseNo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy