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