15 lines
373 B
C#
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; }
|
|
}
|
|
}
|