using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Stock { /// /// 门店要货单新增返回对象 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class AskgoodsTicketAddResponse { /// /// 上传服务端ID /// [JsonProperty(PropertyName = "ticketId")] public string TicketId { get; set; } } }