using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.QiMai { /// /// 订单明细 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class QiMaiOrderAttachGoods { /// /// 加料ID /// [JsonProperty(PropertyName = "id")] public int Id { get; set; } /// /// 加料名称 /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// 加料数量 /// [JsonProperty(PropertyName = "qty")] public int Qty { get; set; } } }