using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Stock { /// /// 配送验收返回对象 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class DispatchTicketReceiveResponse { /// /// 验收单编号 /// [JsonProperty(PropertyName = "no")] public string No { get; set; } /// /// 验收单ID /// [JsonProperty(PropertyName = "id")] public string Id { get; set; } } }