using Hncore.Infrastructure.DDD; using System; using System.Collections.Generic; namespace Hncore.Pass.OSS.Domain { public partial class AssetGroup : EntityWithDelete, ITenant { public int TenantId { get; set; } public int? GroupType { get; set; } public string Name { get; set; } public int? OrderNum { get; set; } } }