79 lines
2.2 KiB
C#
79 lines
2.2 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// ReportCar Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class ReportCar : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 定损员信息,核赔阶段标的车必填
|
||
/// </summary>
|
||
[XmlElement("assessor")]
|
||
public Person Assessor { get; set; }
|
||
|
||
/// <summary>
|
||
/// 司机信息,查勘、核赔阶段必填
|
||
/// </summary>
|
||
[XmlElement("driver")]
|
||
public Person Driver { get; set; }
|
||
|
||
/// <summary>
|
||
/// 车架号,标的车在查勘、核赔阶段必填
|
||
/// </summary>
|
||
[XmlElement("frame_no")]
|
||
public string FrameNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 修理厂地址
|
||
/// </summary>
|
||
[XmlElement("garage_address")]
|
||
public string GarageAddress { get; set; }
|
||
|
||
/// <summary>
|
||
/// 修理厂名称
|
||
/// </summary>
|
||
[XmlElement("garage_name")]
|
||
public string GarageName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 修理厂手机号
|
||
/// </summary>
|
||
[XmlElement("garage_phone_no")]
|
||
public string GaragePhoneNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 修理厂类型 4S:4S店 GENERAL:综合修理
|
||
/// </summary>
|
||
[XmlElement("garage_type")]
|
||
public string GarageType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 车牌号,标的车在查勘、核赔阶段必填
|
||
/// </summary>
|
||
[XmlElement("license_no")]
|
||
public string LicenseNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 查勘首次提交时间,标准时间格式:yyyy-MM-dd HH:mm:ss
|
||
/// </summary>
|
||
[XmlElement("survey_first_commit_date")]
|
||
public string SurveyFirstCommitDate { get; set; }
|
||
|
||
/// <summary>
|
||
/// 查勘末次时间,标准时间格式:yyyy-MM-dd HH:mm:ss
|
||
/// </summary>
|
||
[XmlElement("survey_last_commit_date")]
|
||
public string SurveyLastCommitDate { get; set; }
|
||
|
||
/// <summary>
|
||
/// 查勘员,查勘、核赔阶段标的车必填
|
||
/// </summary>
|
||
[XmlElement("surveyor")]
|
||
public Person Surveyor { get; set; }
|
||
}
|
||
}
|