Files
juipnet/Services/Hncore.Pass.OSS/Domain/AssetGroup.cs
“wanyongkang” b562aba2b1 忽略dll文件git
2023-07-29 10:19:42 +08:00

15 lines
373 B
C#

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