using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEcoMycarMaintainOrderstatusUpdateModel Data Structure. /// [Serializable] public class AlipayEcoMycarMaintainOrderstatusUpdateModel : AopObject { /// /// 扩展参数 /// [XmlElement("ext_param")] public MaintainOrderStatusExtParams ExtParam { get; set; } /// /// 洗车-015;保养-016;4S-020 /// [XmlElement("industry_code")] public string IndustryCode { get; set; } /// /// 订单编号 /// [XmlElement("order_no")] public string OrderNo { get; set; } /// /// 55-已核销;7-已出库;8-已收货 /// [XmlElement("order_status")] public string OrderStatus { get; set; } /// /// 废弃 /// [XmlElement("type")] public string Type { get; set; } } }