Files
juipnet/Services/Hncore.Pass.OSS/Domain/AssetGroup.cs

15 lines
387 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
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; }
}
}