using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities.Entity; /// /// 材料出库(主表) /// [SugarTable("wms_rawmat_outstock_h")] public partial class WmsRawmatOutstockH : BaseEntity { public WmsRawmatOutstockH() { id = SnowflakeIdHelper.NextId(); } /// /// 创建用户 /// 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? bill_code { get; set; } /// /// 出库仓库id /// public string? warehouse_id { get; set; } /// /// 出库类型 /// public string? outstock_type { get; set; } /// /// 领料部门 /// public string? department { get; set; } /// /// erp_pk /// public string? erp_pk { get; set; } /// /// erp_bill_code /// public string? erp_bill_code { get; set; } /// /// 流程任务Id /// public string? f_flowtaskid { get; set; } /// /// 流程引擎Id /// public string? f_flowid { get; set; } /// /// 备注 /// public string? remark { get; set; } /// /// 下发状态 /// public string? issuance_status { get; set; } /// /// erp领出仓库 /// public string? erp_outstock { get; set; } /// /// erp领用仓库 /// public string? erp_instock { get; set; } /// /// erp成本域 /// public string? erp_org_costregion { get; set; } = "1001A1100000001MNB3H"; /// /// erp研发项目id /// public string? erp_project_id { get; set; } /// /// erp领料员 存的天益用户表的id 需关联erp_extend_field 取 /// public string? erp_cbizid { get; set; } }