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.
22 lines
680 B
22 lines
680 B
3 weeks ago
|
using SqlSugar;
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace ReZero.SuperAPI
|
||
|
{
|
||
|
public class ZeroInterfaceCategory : DbBase
|
||
|
{
|
||
|
public string? Name { get; set; }
|
||
|
[SugarColumn(IsNullable =true)]
|
||
|
public long? ParentId{get;set;}
|
||
|
[SugarColumn(IsNullable =true)]
|
||
|
public string? Description { get; set; }
|
||
|
public string? Url { get; set; } = "#";
|
||
|
[SugarColumn(IsIgnore = true,ExtendedAttribute =PubConst.Ui_TreeChild)]
|
||
|
public List<ZeroInterfaceCategory>? SubInterfaceCategories { get; set; }
|
||
|
[SugarColumn(IsNullable =true)]
|
||
|
public string? Icon { get; set; }
|
||
|
}
|
||
|
}
|