using System; using System.Collections.Generic; using System.Linq; using System.Text; using SqlSugar; namespace JiepeiWMS.Model.Models { /// ///商品表 /// [SugarTable("WMProductList", "Jiepei_WMS")] public class WMProductList { public WMProductList() { } /// /// 商品主键Id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 类型Id /// public int ClassId { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 物料编码 /// public string Code { get; set; } /// /// 助记码 /// public string BarCode { get; set; } /// /// 单位 /// public int Unit { get; set; } /// /// 库存上限 /// public int StoreLimit { get; set; } /// /// 库存下限 /// public int StoreBaseline { get; set; } /// /// 价格 /// public decimal Price { get; set; } /// /// 采购价格 /// public decimal PurchasePrice { get; set; } /// /// 是否启用 /// public bool IsUse { get; set; } /// /// 添加人 /// public int AdminId { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 商品规格Id /// public int SpecIds { get; set; } /// /// 排序 /// public int Sort { get; set; } /// /// 异常天数 /// public int? OddDays { get; set; } /// /// 异常浮动倍数 /// public int? OddFloatNum { get; set; } /// /// 更新时间 /// public DateTime? UpdateTime { get; set; } /// /// 是否审核 /// public bool IsChecked { get; set; } /// /// 简称 /// public string SimpleName { get; set; } /// /// 主体Id /// public int SysOrgId { get; set; } /// /// 分类名称 /// [SugarColumn(IsIgnore = true)] public string ClassName { get; set; } /// /// 规格名称 /// [SugarColumn(IsIgnore = true)] public string SpecName { get; set; } /// /// 单位名称 /// [SugarColumn(IsIgnore = true)] public string UnitName { get; set; } /// /// 数量 /// [SugarColumn(IsIgnore = true)] public decimal? Quantity { get; set; } /// /// 创建人 /// [SugarColumn(IsIgnore = true)] public string AdminName { get; set; } /// /// 采购填写的数量 /// [SugarColumn(IsIgnore = true)] public int WNum { get; set; } /// /// 所属组织 /// [SugarColumn(IsIgnore = true)] public string OrgName { get; set; } /// /// 状态 /// [SugarColumn(IsIgnore = true)] public string IsUseName { get; set; } /// /// 是否需要审核 /// [SugarColumn(IsIgnore = true)] public string IsCheckedName { get; set; } /// /// 仓库Id /// [SugarColumn(IsIgnore = true)] public int WareHouseId { get; set; } /// /// 仓库名称 /// [SugarColumn(IsIgnore = true)] public string WareHouseName { get; set; } /// /// 商品关联表Id /// [SugarColumn(IsIgnore = true)] public int ProductInfoId { get; set; } } }