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.
21 lines
652 B
21 lines
652 B
3 weeks ago
|
using SqlSugar;
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace ReZero.SuperAPI
|
||
|
{
|
||
|
public class ZeroEntityInfo : DbBase
|
||
|
{
|
||
|
public string? ClassName { get; set; }
|
||
|
public string? DbTableName { get; set; }
|
||
|
[SugarColumn(IsNullable = true)]
|
||
|
public int? ColumnCount { get; set; }
|
||
|
public long DataBaseId { get; set; }
|
||
|
[SugarColumn(IsNullable =true)]
|
||
|
public string ? Description { get; set; }
|
||
|
[Navigate(NavigateType.OneToMany,nameof(ZeroEntityColumnInfo.TableId))]
|
||
|
public List<ZeroEntityColumnInfo>? ZeroEntityColumnInfos { get; set; }
|
||
|
}
|
||
|
}
|