using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 未审核的盘点明细列表 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class StockUncheckTicketDetailResponse { /// /// 明细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; } /// /// 规格 /// [JsonProperty(PropertyName = "specId")] public string SpecId { get; set; } /// /// specName /// [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 decimal SysPrice { get; set; } /// /// 系统数量 /// [JsonProperty(PropertyName = "sysAmount")] public decimal SysAmount { get; set; } /// /// 盘点数量 /// [JsonProperty(PropertyName = "checkAmount")] public decimal CheckAmount { get; set; } /// /// 差异数量 /// [JsonProperty(PropertyName = "differenceAmount")] public decimal DifferenceAmount { get; set; } /// /// 系统金额 /// [JsonProperty(PropertyName = "sysMoney")] public decimal SysMoney { get; set; } /// /// 盘点金额 /// [JsonProperty(PropertyName = "checkMoney")] public decimal CheckMoney { get; set; } /// /// 差异金额 /// [JsonProperty(PropertyName = "differenceMoney")] public decimal DifferenceMoney { get; set; } /// /// 备注说明 /// [JsonProperty(PropertyName = "description")] public string Description { get; set; } /// /// 操作按钮 /// public string Operation { get; set; } } }