You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
407 B
19 lines
407 B
using SqlSugar;
|
|
using System;
|
|
|
|
namespace Tiobon.Core.Model
|
|
{
|
|
/// <summary>
|
|
/// 接口API地址信息表
|
|
/// 父类
|
|
/// </summary>
|
|
public class ModulesRoot<Tkey> : RootEntityTkey<Tkey> where Tkey : IEquatable<Tkey>
|
|
{
|
|
/// <summary>
|
|
/// 父ID
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public Tkey ParentId { get; set; }
|
|
|
|
}
|
|
}
|
|
|