namespace MiaoYu.Repository.Admin.Entities.LowCode; /// /// 低代码表 /// [EntityDescription(FieldIgnored = true)] public class LowCodeTable : DefaultEntity { /// /// /// public string? Schema { get; set; } /// /// 所属数据库 /// public string? DataBase { get; set; } /// /// 类型 /// public string? Type { get; set; } /// /// 表名称 /// public string? TableName { get; set; } /// /// 显示名称 描述 /// public string? DisplayName { get; set; } /// /// 实体名称 /// public string? EntityName { get; set; } /// /// 备注 /// public string? Remark { get; set; } /// /// 实体保存路径 /// /// public string? ModelPath { get; set; } /// /// 服务保存路径 /// /// public string? ServicePath { get; set; } /// /// 控制器保存路径 /// /// public string? ControllerPath { get; set; } /// /// 前端视图保存路径 /// /// public string? ClientIndexPath { get; set; } /// /// 前端信息弹窗保存位置 /// /// public string? ClientInfoPath { get; set; } /// /// 前端服务保存位置 /// /// public string? ClientServicePath { get; set; } /// /// 是否覆盖生成 否的话生成代码重复会在后面加一个时间 /// /// public bool? IsCover { get; set; } = false; }