using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Stock { /// /// 门店要货单信息 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class AskgoodsTicketAddRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 要货单信息 /// [JsonProperty(PropertyName = "askgoodsTicketAdd")] public AskgoodsTicketAdd AskgoodsTicketAdd { get; set; } } }