using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities.Entity; /// /// 调拨订单 /// [SugarTable("wms_transfer_order_h")] public partial class WmsTransferOrderH : BaseEntity { public WmsTransferOrderH() { 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; } /// /// 流程任务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? org_id { get; set; } /// /// 单号 /// public string? bill_code { get; set; } /// /// 备注 /// public string? remark { get; set; } /// /// 部门编码 /// public string? dept_code { get; set; } /// /// 业务员编码 /// public string? biller { get; set; } /// /// 交易类型 /// public string? transaction_type { get; set; } /// /// erp仓库类型 /// public string erp_wh_type { get; set; } /// /// bip入库组织vid /// public string? instockorg_id { get; set; } /// /// bip入库组织id /// public string? instockorg_code { get; set; } }