NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayInsDataDsbEstimateQue...

37 lines
930 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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