using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 配送单明细 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class DispatchTicketDetailResponse { /// /// 企业编号 /// [JsonProperty(PropertyName = "tenantId")] public string TenantId { get; set; } /// /// 单ID /// [JsonProperty(PropertyName = "id")] public string Id { get; set; } /// /// 配送单ID /// [JsonProperty(PropertyName = "ticketId")] public string TicketId { get; set; } /// /// 配送单编号 /// [JsonProperty(PropertyName = "ticketNo")] public string TicketNo { get; set; } /// /// 出库库位ID /// [JsonProperty(PropertyName = "storageId")] public string StorageId { get; set; } /// /// 出库库位名 /// [JsonProperty(PropertyName = "storageName")] public string StorageName { get; set; } /// /// 商品ID /// [JsonProperty(PropertyName = "productId")] public string ProductId { get; set; } /// /// 商品编号 /// [JsonProperty(PropertyName = "productNo")] public string ProductNo { get; set; } /// /// 商品名称 /// [JsonProperty(PropertyName = "productName")] public string ProductName { get; set; } /// /// 规格ID /// [JsonProperty(PropertyName = "specId")] public string SpecId { get; set; } /// /// 规格名称 /// [JsonProperty(PropertyName = "specName")] public string SpecName { get; set; } /// /// 商品说明 /// [JsonProperty(PropertyName = "productDescription")] public string ProductDescription { get; set; } /// /// 要货数量 /// [JsonProperty(PropertyName = "askgoodsAmount")] public string AskgoodsAmount { get; set; } /// /// 配送数量 /// [JsonProperty(PropertyName = "dispatchAmount")] public string DispatchAmount { get; set; } /// /// 配送单位ID /// [JsonProperty(PropertyName = "dispatchUnitId")] public string DispatchUnitId { get; set; } /// /// 配送单位名称 /// [JsonProperty(PropertyName = "dispatchUnitName")] public string DispatchUnitName { get; set; } /// /// 配送价 /// [JsonProperty(PropertyName = "price")] public string Price { get; set; } /// /// 配送金额 /// [JsonProperty(PropertyName = "money")] public string Money { get; set; } /// /// 备注信息 /// [JsonProperty(PropertyName = "description")] public string Description { get; set; } /// /// 收货数量 /// [JsonProperty(PropertyName = "ReceiveAmount")] public string ReceiveAmount { get; set; } //小计金额 public string SubtotalPrice { get; set; } /// /// 差异数量 /// [JsonProperty(PropertyName = "differenceAmount")] public string DifferenceAmount { get; set; } /// /// 差异金额 /// [JsonProperty(PropertyName = "differenceMoney")] public string DifferenceMoney { get; set; } } }