添加项目文件。

This commit is contained in:
2023-03-13 15:00:34 +08:00
parent 42bf06ca3e
commit 1d73df3235
1205 changed files with 185078 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.Database;
/// <summary>
/// 数据库表字段下拉框输出.
/// </summary>
[SuppressSniffer]
public class DatabaseTableFieldsSelectorOutput
{
/// <summary>
/// 字段.
/// </summary>
public string field { get; set; }
/// <summary>
/// 字段名称.
/// </summary>
public string fieldName { get; set; }
}

View File

@@ -0,0 +1,30 @@
using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.Database;
/// <summary>
/// 数据库表列表输出.
/// </summary>
[SuppressSniffer]
public class DatabaseTableListOutput
{
/// <summary>
/// 说明.
/// </summary>
public string? description { get; set; }
/// <summary>
/// 表记录数.
/// </summary>
public int sum { get; set; }
/// <summary>
/// 表名.
/// </summary>
public string? table { get; set; }
/// <summary>
/// 表说明.
/// </summary>
public string? tableName { get; set; }
}

View File

@@ -0,0 +1,15 @@
using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.Database;
/// <summary>
/// 数据库表预览输出.
/// </summary>
[SuppressSniffer]
public class DatabaseTablePreviewOutput
{
/// <summary>
/// 数据表对应数据列表.
/// </summary>
public List<object> myProperty { get; set; }
}

View File

@@ -0,0 +1,16 @@
using JNPF.Common.Filter;
using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.Database;
/// <summary>
/// 数据库表预览查询.
/// </summary>
[SuppressSniffer]
public class DatabaseTablePreviewQuery : PageInputBase
{
/// <summary>
/// 字段.
/// </summary>
public string field { get; set; }
}

View File

@@ -0,0 +1,12 @@
using JNPF.Common.Dtos.DataBase;
using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.Database;
/// <summary>
/// 数据库表修改输入.
/// </summary>
[SuppressSniffer]
public class DatabaseTableUpInput : DatabaseTableInfoOutput
{
}