using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities.Entity; /// /// 材料出库单(子表) /// [SugarTable("wms_rawmat_outstock_d")] public partial class WmsRawmatOutstockD : BaseEntity { public WmsRawmatOutstockD() { 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; } /// /// 物料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? batchno { get; set; } /// /// 数量 /// public decimal? qty { get; set; } /// /// 抽检载具id /// public string? carry_id { get; set; } /// /// 抽检载具编码 /// public string? carry_code { get; set; } /// /// 抽检出库库位id /// public string? location_id { get; set; } /// /// 抽检出库库位 /// public DateTime? location_code { get; set; } /// /// 抽检出库时间 /// public DateTime? outstock_time { get; set; } /// /// 抽检确认时间 /// public DateTime? check_time { get; set; } /// /// 抽检入库时间 /// public DateTime? instock_time { get; set; } /// /// 单位 /// public string? unit { get; set; } /// /// erp_line_pk /// public string? erp_line_pk { get; set; } /// /// 行号 /// public string? lineno { get; set; } /// /// 实际出库数量 /// public decimal? actual_outstock_qty { get; set; } /// /// 辅助属性 /// public string auxprop { get; set; } /// /// 辅助属性 供应商 /// public string auxprop_gys { get; set; } /// /// 辅助属性 小批号 /// public string auxprop_xph { get; set; } }