You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
462 B
C#
18 lines
462 B
C#
using SqlSugar;
|
|
|
|
namespace OpenAuth.Repository.Domain;
|
|
|
|
|
|
[SugarTable("lasa_linefolder")]
|
|
public class LasaLineFolder
|
|
{
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public string Id {get; set;}
|
|
public string Path {get; set;}
|
|
public string Ancestor {get; set;}
|
|
public string ParentId {get; set;}
|
|
public DateTime? CreateTime {get; set;}
|
|
|
|
[SugarColumn(IsIgnore = true)]
|
|
public List<LasaLineFolder> Children { get; set; }
|
|
} |