using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities.Entity; /// /// 原材料转库单 /// [SugarTable("wms_material_transfer")] public partial class WmsMaterialTransfer : BaseEntity { public WmsMaterialTransfer() { 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? tenant_id { get; set; } /// /// 时间戳(用于并发控制) /// public DateTime? timestamp { get; set; } /// /// 单号 /// public string? bill_code { get; set; } /// /// 单据状态 /// public string? status { get; set; } /// /// 入库单创建日期 /// public DateTime? bill_date { get; set; } /// /// 出库仓库 /// public string? warehouse_outstock { get; set; } /// /// 入库仓库 /// public string? warehouse_instock { get; set; } /// /// 转库类型 /// public string? type { get; set; } /// /// 出库业务员 /// public string? biller_out { get; set; } /// /// 出库部门 /// public string? depart_out { get; set; } /// /// 入库业务员 /// public string? biller_in { get; set; } /// /// 入库部门 /// public string? depart_in { get; set; } /// /// 应发货日期 /// public DateTime? deliver_date { get; set; } /// /// 应到货日期 /// public DateTime? arrival_date { get; set; } /// /// 生产订单号 /// public string? order_code { get; set; } /// /// 载具数量 /// public int? carry_count { get; set; } /// /// 可绑定料架的载具数量 /// public int? remainbindracknum { get; set; } /// /// erp转库单号 /// public string? erp_bill_code { get; set; } /// /// 主表主键 /// public string erp_pk { get; set; } /// /// erp出库仓库 /// public string? erp_warehouse_outstock { get; set; } /// /// erp入库仓库 /// public string? erp_warehouse_instock { get; set; } }