using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities.Entity; /// /// 盘点明细 /// [SugarTable("wms_inventorycheck_d")] public partial class WmsInventorycheckD : BaseEntity { public WmsInventorycheckD() { id = SnowflakeIdHelper.NextId(); } /// /// 盘点单id /// public string? bill_id { get; set; } /// /// 创建用户 /// public string? create_id { get; set; } /// /// 创建时间 /// public DateTime? create_time { get; set; } /// /// 修改用户 /// public string? modify_id { get; set; } /// /// 修改时间 /// public DateTime? modify_time { get; set; } /// /// 备注 /// public string? remark { get; set; } /// /// 所属组织 /// public string? org_id { get; set; } /// /// 物料id /// public string? material_id { get; set; } /// /// 物料编号 /// public string? material_code { get; set; } /// /// 物料名称 /// public string? material_name { get; set; } /// /// 规格型号 /// public string? material_specification { get; set; } /// /// 批次 /// public string? code_batch { get; set; } /// /// 单位id /// public string? unit_id { get; set; } /// /// 单位编码 /// public string? unit_code { get; set; } /// /// 数量 /// public decimal? qty { get; set; } /// /// 生产日期 /// public DateTime? production_date { get; set; } /// /// erp_line_pk /// public string? erp_line_pk { get; set; } /// /// 行号 /// public string? lineno { get; set; } /// /// 实际数量 /// public decimal? actual_qty { get; set; } /// /// 辅助属性 /// public string auxprop { get; set; } /// /// 辅助属性 供应商 /// public string auxprop_gys { get; set; } /// /// 辅助属性 小批号 /// public string auxprop_xph { get; set; } /// /// 盘点状态:0未盘点1已盘点 /// public string check_status { get; set; } /// /// 盘点完成时间 /// public DateTime? check_time { get; set; } /// /// 盘点人 /// public string checker_id { get; set; } }