using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// RepairItem Data Structure. /// [Serializable] public class RepairItem : AopObject { /// /// 配件编码 /// [XmlElement("part_id")] public string PartId { get; set; } /// /// 支付类型: SELF_PAY("SELF", "自付"), FREE_PAY("FREE", "免费"); /// [XmlElement("pay_type")] public string PayType { get; set; } /// /// 维修项价格,单位:分 /// [XmlElement("price")] public long Price { get; set; } /// /// L1("L1", "轻度钣金"), L2("L2", "中度钣金"), L3("L3", "重度钣金"), P1("P1", "半喷"), P2("P2", "全喷"), P3("P3", "补漆"), NONE("none", "无"), /// [XmlElement("repair_degree")] public string RepairDegree { get; set; } /// /// R1("R1","喷漆"), R2("R2","钣金"), R3("R3","拆装"), R4("R4","更换"), R5("R5","电工"), R6("R6","机修"), R7("R7","抛光"), R8("R8","外修"), /// [XmlElement("repair_type")] public string RepairType { get; set; } } }