using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities.Entity; /// /// 原材料调拨入库 /// [SugarTable("wms_rawmat_transferinstock_h")] public partial class WmsRawmatTransferinstockH : BaseEntity { public WmsRawmatTransferinstockH() { id = SnowflakeIdHelper.NextId(); } /// /// 原材料调拨入库单号 /// public string? bill_code { get; set; } /// /// 联系人 /// public string? contact_person { get; set; } /// /// 电话 /// public string? tel { get; set; } /// /// bip出库组织vid /// public string? outstockorg_id { get; set; } /// /// bip出库组织id /// public string? outstockorg_code { get; set; } /// /// 出库组织名称 /// public string? outstockorg_name { get; set; } /// /// 备注 /// public string? remark { get; set; } /// /// 扩展字段 /// public string? extras { get; set; } /// /// 时间戳 /// public string? time_stamp { get; set; } /// /// 单据类型 /// public string? document_type { 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? org_id { get; set; } /// /// 流程任务Id /// public string? f_flowtaskid { get; set; } /// /// 流程引擎Id /// public string? f_flowid { get; set; } /// /// erp_pk /// public string? erp_pk { get; set; } /// /// erp_bill_code /// public string? erp_bill_code { get; set; } /// /// 部门编码 /// public string? dept_code { get; set; } /// /// 业务员编码 /// public string? biller { get; set; } /// /// erp仓库类型 /// public string? erp_wh_type { get; set; } }