using System; using System.Collections.Generic; using System.Linq; using System.Text; using SqlSugar; namespace JiepeiWMS.Model.Models { /// ///入库单表 /// [SugarTable("WMInInventory", "Jiepei_WMS")] public class WMInInventory { public WMInInventory() { } /// /// 入库单Id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 入库编号 /// public string InInventoryCode { get; set; } /// /// 出入库类型 /// public int OutInType { get; set; } /// /// 采购员Id /// public int EmployeeId { get; set; } /// /// 仓库Id /// public int WareHouseId { get; set; } /// /// 部门ID /// public int DepartmentId { get; set; } /// /// 供应商Id /// public int SupplierId { get; set; } /// /// 入库时间 /// public DateTime? InTime { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 创建人Id /// public int AdminId { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 主体Id /// public int SysOrgId { get; set; } /// /// 仓库名称 /// [SugarColumn(IsIgnore = true)] public string WareHouseName { get; set; } /// /// 部门名称 /// [SugarColumn(IsIgnore = true)] public string DepartmentName { get; set; } /// /// 供应商名称 /// [SugarColumn(IsIgnore = true)] public string SupplierName { get; set; } /// /// 采购员 /// [SugarColumn(IsIgnore = true)] public string EmployeeName { get; set; } /// /// 创建人 /// [SugarColumn(IsIgnore = true)] public string AdminName { get; set; } /// /// 出入库类型名称 /// [SugarColumn(IsIgnore = true)] public string OutInTypeName { get; set; } /// /// 入库单信息列表 /// [SugarColumn(IsIgnore = true)] public List InInventoryInfoList { get; set; } } }