using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Common.JsonObject { /// /// 新订单结果 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class NewOrderResult { /// /// 服务编号 /// [JsonProperty(PropertyName = "serviceId")] public string ServiceId { get; set; } /// /// 响应结果 /// [JsonProperty(PropertyName = "requestObj")] public object RequestObj { get; set; } } }