using Newtonsoft.Json; namespace Common.Request.Bsamecity { public class BsamecityCancelParam{ /// /// 下单时返回的taskId /// /// public string taskId {get; set;} /// /// 订单id /// /// public string orderId {get; set;} /// /// 取消原因类型 /// /// public int cancelMsgType {get; set;} /// /// 取消原因 /// /// public string cancelMsg {get; set;} public override string ToString() { return JsonConvert.SerializeObject(this,Formatting.Indented,new JsonSerializerSettings(){NullValueHandling = NullValueHandling.Ignore}); } } }