using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities.Entity; /// /// 成品调拨出库主表 /// [SugarTable("wms_transfer_outstock_h")] public partial class WmsTransferOutstockH : BaseEntity { public WmsTransferOutstockH() { 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? org_id { get; set; } /// /// 流程任务Id /// public string? f_flowtaskid { get; set; } /// /// 流程引擎Id /// public string? f_flowid { get; set; } /// /// 审核员 /// public string? auditor_id { get; set; } /// /// 审核状态 /// public int? audit_status { get; set; } /// /// 出库单号 /// public string? bill_code { get; set; } /// /// 出库单创建日期 /// public DateTime? bill_date { get; set; } /// /// 单据状态 /// public string? status { get; set; } /// /// 备注 /// public string? remark { get; set; } /// /// 出库类型 /// public string? outstock_type { get; set; } /// /// 下发状态 /// public string? issuance_status { get; set; } /// /// 交易类型BIP /// public string? transaction_type { get; set; } /// /// 出库仓库 /// public string? warehouse_code { get; set; } /// /// erp_pk /// public string? erp_pk { get; set; } /// /// 调拨订单id /// public string? transfer_order_id { get; set; } /// /// bip入库组织vid /// public string? instockorg_id { get; set; } /// /// bip入库组织id /// public string? instockorg_code { get; set; } /// /// erp_bill_code /// public string? erp_bill_code { get; set; } }