using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.Model { public class OrderStatusRsp { /// /// 子订单ID /// public string SuborderId { get; set; } /// /// 订单状态 /// public int Result { get; set; } = 0; public bool isSuccess { get; set; } public bool data { get; set; } public string msg { get; set; } } }