using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities.Entity; /// /// 成品调拨出库子表 /// [SugarTable("wms_transfer_outstock_d")] public partial class WmsTransferOutstockD : BaseEntity { public WmsTransferOutstockD() { id = SnowflakeIdHelper.NextId(); } /// /// 所属组织 /// public string? org_id { get; set; } /// /// 出库单ID /// public string? bill_id { get; set; } /// /// 执行状态 /// public string? status { get; set; } /// /// 物品ID /// public string? material_id { get; set; } /// /// 物品代码 /// public string? material_code { get; set; } /// /// 主单位 /// public string? unit_id { get; set; } /// /// 单位代码 /// public string? unit_code { get; set; } /// /// 出库需求数量 /// public decimal? pr_qty { get; set; } /// /// 已下发数量 /// public decimal? xf_qty { get; set; } /// /// 实际出库数量 /// public decimal? qty { get; set; } /// /// 流程任务Id /// public string? f_flowtaskid { get; set; } /// /// 流程引擎Id /// public string? f_flowid { get; set; } /// /// 规格 /// public string? material_specification { 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? pi_code { get; set; } /// /// 物料描述 /// public string? material_desc { get; set; } /// /// 灭菌批号 /// public string? miepi_code { get; set; } /// /// 辅单位 /// public string? fuunit_id { get; set; } /// /// 型号 /// public string? model { get; set; } /// /// 辅数量 /// public string? fu_qty { get; set; } /// /// wms出库仓库编码 /// public string? warehouse_code { get; set; } /// /// erp_line_pk /// public string? erp_line_pk { get; set; } /// /// erp行号 /// public string? lineno { get; set; } /// /// erp出库仓库编码 /// public string erp_wh_type { get; set; } /// /// erp入库仓库编码 /// public string? warehouse_instock_code { get; set; } }