using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities.Entity; /// /// 包材出库主表 /// [SugarTable("wms_pack_outstock_h")] public partial class WmsPackOutstockH : BaseEntity { public WmsPackOutstockH() { id = SnowflakeIdHelper.NextId(); } /// /// 所属组织 /// public string? org_id { get; set; } /// /// 包材出库单号 /// public string? bill_code { get; set; } /// /// 单据类型 /// public string? bill_type { get; set; } /// /// 单据状态 /// public string? status { get; set; } /// /// 业务类型 /// public string? biz_type { get; set; } /// /// 出库仓库ID /// public string? warehouse_id { get; set; } /// /// 客户ID /// public string? customer_id { get; set; } /// /// 客户代码 /// public string? customer_code { get; set; } /// /// 客户名称 /// public string? customer_name { get; set; } /// /// 生成类型 /// public string? generate_type { get; set; } /// /// 备注 /// public string? remark { get; set; } /// /// 扩展字段 /// public string? extras { get; set; } /// /// 时间戳 /// public DateTime? time_stamp { get; set; } /// /// 来源单据ID /// public string? source_id { get; set; } /// /// 来源单据代码 /// public string? source_code { get; set; } /// /// 流程任务Id /// public string? f_flowtaskid { get; set; } /// /// 流程引擎Id /// public string? f_flowid { get; set; } /// /// 审核员 /// public string? auditor_id { get; set; } /// /// 审核状态 /// public string? audit_status { 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; } }