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