20 lines
652 B
20 lines
652 B
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; } |
|
} |
|
}
|
|
|