using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Stock { /// /// 盘点单明细 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class StoreStockCheckTicketDetailResponse { /// /// 单ID /// [JsonProperty(PropertyName = "id")] public string Id { get; set; } /// /// 企业编号 /// [JsonProperty(PropertyName = "tenantId")] public string TenantId { get; set; } /// /// 配送单ID /// [JsonProperty(PropertyName = "ticketId")] public string TicketId { 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; } /// /// 库存单位ID /// [JsonProperty(PropertyName = "stockUnitId")] public string StockUnitId { get; set; } /// /// 库存单位名称 /// [JsonProperty(PropertyName = "stockUnitName")] public string StockUnitName { get; set; } /// /// 系统价格 /// [JsonProperty(PropertyName = "sysPrice")] public string SysPrice { get; set; } /// /// 系统数量 /// [JsonProperty(PropertyName = "sysAmount")] public string SysAmount { get; set; } /// /// 盘点数量 /// [JsonProperty(PropertyName = "checkAmount")] public string CheckAmount { get; set; } /// /// 差异数量 /// [JsonProperty(PropertyName = "differenceAmount")] public string DifferenceAmount { get; set; } /// /// 系统金额 /// [JsonProperty(PropertyName = "sysMoney")] public string SysMoney { get; set; } /// /// 盘点金额 /// [JsonProperty(PropertyName = "checkMoney")] public string CheckMoney { get; set; } /// /// 差异金额 /// [JsonProperty(PropertyName = "differenceMoney")] public string DifferenceMoney { get; set; } /// /// 备注信息 /// [JsonProperty(PropertyName = "description")] public string Description { get; set; } } }