You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

99 lines
2.5 KiB
C#

9 months ago
using Newtonsoft.Json;
using NPoco;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Entity.Stock
{
public class StockCheckDetailEntity
{
/// <summary>
/// 仓库ID
/// </summary>
[JsonProperty(PropertyName = "storageId")]
[Column("storageId")]
public string StorageId { get; set; }
/// <summary>
/// 仓库名称
/// </summary>
[JsonProperty(PropertyName = "storageName")]
[Column("storageName")]
public string StorageName { get; set; }
/// <summary>
/// 商品ID
/// </summary>
[JsonProperty(PropertyName = "productId")]
[Column("productId")]
public string ProductId { get; set; }
/// <summary>
/// 商品编号
/// </summary>
[JsonProperty(PropertyName = "productNo")]
[Column("productNo")]
public string ProductNo { get; set; }
/// <summary>
/// 商品名称
/// </summary>
[JsonProperty(PropertyName = "productName")]
[Column("productName")]
public string ProductName { get; set; }
/// <summary>
/// 规格ID
/// </summary>
[JsonProperty(PropertyName = "specId")]
[Column("specId")]
public string SpecId { get; set; }
/// <summary>
/// 规格名称
/// </summary>
[JsonProperty(PropertyName = "specName")]
[Column("specName")]
public string SpecName { get; set; }
/// <summary>
/// 商品说明
/// </summary>
[JsonProperty(PropertyName = "productDescription")]
[Column("productDescription")]
public string ProductDescription { get; set; }
/// <summary>
/// 配送单位ID
/// </summary>
[JsonProperty(PropertyName = "stockUnitId")]
[Column("stockUnitId")]
public string StockUnitId { get; set; }
/// <summary>
/// 库存单位名称
/// </summary>
[JsonProperty(PropertyName = "stockUnitName")]
[Column("stockUnitName")]
public string StockUnitName { get; set; }
/// <summary>
/// 备注说明
/// </summary>
[JsonProperty(PropertyName = "description")]
[Column("description")]
public string Description { get; set; }
/// <summary>
/// 操作
/// </summary>
public string Operation { get; set; }
}
}