Files
juipnet/Services/Hncore.Pass.OSS/Domain/AssetGroup.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

15 lines
387 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; }
}
}