using System; using System.Linq; using System.Text; using SqlSugar; namespace JiepeiWMS.Model.Models { /// ///入库单信息表 /// [SugarTable("WMInInventoryInfo", "Jiepei_WMS")] public class WMInInventoryInfo { public WMInInventoryInfo() { } /// /// 入库单信息Id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 入库单Id /// public int InInventoryId { get; set; } /// /// 商品Id /// public int ProductId { get; set; } /// /// 仓库Id /// public int WareHouseId { get; set; } /// /// 采购单位 /// public string PurchaseUnit { get; set; } /// /// 单价 /// public decimal Price { get; set; } /// /// 数量 /// public decimal Quantity { get; set; } /// /// 审核数量 /// public decimal CheckNum { get; set; } /// /// 采购数量 /// public decimal? PurchaseNum { get; set; } /// /// 入库数量 /// public decimal? StorageNum { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 库位Id /// public int LocationId { get; set; } /// /// 入库时间 /// public DateTime InTime { get; set; } /// /// 创建时间 /// public DateTime? CreateTime { get; set; } /// /// 产品代码 /// [SugarColumn(IsIgnore = true)] public string ProductCode { get; set; } /// /// 产品名称 /// [SugarColumn(IsIgnore = true)] public string ProductName { get; set; } /// /// 产品规格 /// [SugarColumn(IsIgnore = true)] public string ProductSpec { get; set; } /// /// 总价 /// [SugarColumn(IsIgnore = true)] public decimal ActualAmount { get; set; } /// /// 库位 /// [SugarColumn(IsIgnore = true)] public string LocationName { get; set; } } }