using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities.Entity; /// /// ERP仓库映射关系表 /// [SugarTable("wms_erp_warehouserela_h")] public partial class WmsErpWarehouserelaH : BaseEntity { public WmsErpWarehouserelaH() { 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; } /// /// erp仓库编码 /// public string? erp_warehousecode { get; set; } /// /// erp仓库id /// public string? erp_warehouseid { get; set; } /// /// erp仓库vid /// public string? erp_warehousevid { get; set; } /// /// wms仓库编码 /// public string? wms_warehousecode { get; set; } }