NewGaoKaoApi/PaymentSDK/AliPay/Domain/InsDataDsbEstimateResultDet...

97 lines
2.5 KiB
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>
/// InsDataDsbEstimateResultDetail Data Structure.
/// </summary>
[Serializable]
public class InsDataDsbEstimateResultDetail : AopObject
{
/// <summary>
/// 受损程度
/// </summary>
[XmlElement("damage_degree")]
public string DamageDegree { get; set; }
/// <summary>
/// 受损程度中文描述
/// </summary>
[XmlElement("damage_degree_desc")]
public string DamageDegreeDesc { get; set; }
/// <summary>
/// 受损类型
/// </summary>
[XmlElement("damage_type")]
public string DamageType { get; set; }
/// <summary>
/// 受损类型中文描述
/// </summary>
[XmlElement("damage_type_desc")]
public string DamageTypeDesc { get; set; }
/// <summary>
/// 工时项目代码
/// </summary>
[XmlElement("hourly_code")]
public string HourlyCode { get; set; }
/// <summary>
/// 工时费
/// </summary>
[XmlElement("hourly_wage")]
public string HourlyWage { get; set; }
/// <summary>
/// 配件OE码
/// </summary>
[XmlElement("oe_code")]
public string OeCode { get; set; }
/// <summary>
/// 是否旧件回收true或false
/// </summary>
[XmlElement("old_recycle")]
public bool OldRecycle { get; set; }
/// <summary>
/// 配件费用
/// </summary>
[XmlElement("parts_cost")]
public string PartsCost { get; set; }
/// <summary>
/// 零件管理费,单位:元
/// </summary>
[XmlElement("parts_manage_fee")]
public string PartsManageFee { get; set; }
/// <summary>
/// 配件名称
/// </summary>
[XmlElement("parts_name")]
public string PartsName { get; set; }
/// <summary>
/// 残值扣除,单位:元
/// </summary>
[XmlElement("remain_value")]
public string RemainValue { get; set; }
/// <summary>
/// 维修方案
/// </summary>
[XmlElement("repair_type")]
public string RepairType { get; set; }
/// <summary>
/// 维修方案中文描述
/// </summary>
[XmlElement("repair_type_desc")]
public string RepairTypeDesc { get; set; }
}
}