namespace MiaoYu.Core.CodeGenerator.Models;
///
/// 低代码表(不依赖数据库实体)
///
public class LowCodeTable
{
///
/// 表架构
///
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 string? MenuPath { get; set; }
///
/// 前端路由路径
///
public string? RouterPath { get; set; }
///
/// 是否覆盖生成
///
public bool? IsCover { get; set; } = false;
///
/// 实体名称空间
///
public string? EntityNamespace { get; set; }
///
/// 服务层命名空间
///
public string? ServiceNamespace { get; set; }
///
/// 控制器命名空间
///
public string? ControllerNamespace { get; set; }
///
/// 客户端服务命名空间
///
public string? ClientServiceNamespace { get; set; }
}