添加项目文件。
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
@@ -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; }
|
||||
}
|
||||
@@ -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; }
|
||||
}
|
||||
@@ -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; }
|
||||
}
|
||||
@@ -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
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user