using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Entity { /// /// 销售订单分店消费明细 /// [Serializable] public class OrderSubStoreDetail { [JsonProperty(PropertyName = "goodId")] public string GoodId { get; set; } [JsonProperty(PropertyName = "bizUserId")] public string BizUserId { get; set; } } }