using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayInsDataDsbEstimateQueryModel Data Structure. /// [Serializable] public class AlipayInsDataDsbEstimateQueryModel : AopObject { /// /// 定损单号 /// [XmlElement("estimate_no")] public string EstimateNo { get; set; } /// /// 车架号 /// [XmlElement("frame_no")] public string FrameNo { get; set; } /// /// 修理厂类型,枚举如下。 4S-4S店 GENERAL-综合修理厂 /// [XmlElement("garage_type")] public string GarageType { get; set; } /// /// 车牌号 /// [XmlElement("license_no")] public string LicenseNo { get; set; } } }