添加项目文件。

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,62 @@
using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.ModuleColumn;
/// <summary>
/// 功能列表行为处理输入.
/// </summary>
[SuppressSniffer]
public class ModuleColumnActionsBatchInput
{
/// <summary>
/// 功能主键.
/// </summary>
public string moduleId { get; set; }
/// <summary>
/// 表格描述.
/// </summary>
public string bindTableName { get; set; }
/// <summary>
/// 字段数据.
/// </summary>
public List<Column> columnJson { get; set; }
/// <summary>
/// 绑定表格.
/// </summary>
public string bindTable { get; set; }
}
/// <summary>
/// 列字段数据.
/// </summary>
[SuppressSniffer]
public class Column
{
/// <summary>
/// 字段名称.
/// </summary
public string enCode { get; set; }
/// <summary>
/// 字段注解.
/// </summary>
public string fullName { get; set; }
/// <summary>
/// 绑定表格.
/// </summary>
public string bindTable { get; set; }
/// <summary>
/// 字段规则.
/// </summary>
public int fieldRule { get; set; }
/// <summary>
/// 子表关联key.
/// </summary>
public string childTableKey { get; set; }
}