Files
tnb.server/system/Tnb.Systems.Entitys/Dto/System/ModuleColumn/ModuleColumnInfoOutput.cs
2023-03-13 15:00:34 +08:00

65 lines
1.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.ModuleColumn;
/// <summary>
/// 功能列表信息输出.
/// </summary>
[SuppressSniffer]
public class ModuleColumnInfoOutput
{
/// <summary>
/// id.
/// </summary>
public string id { get; set; }
/// <summary>
/// 功能ID.
/// </summary>
public string moduleId { get; set; }
/// <summary>
/// 绑定表格.
/// </summary>
public string bindTable { get; set; }
/// <summary>
/// 表格描述.
/// </summary>
public string bindTableName { get; set; }
/// <summary>
/// 字段名称.
/// </summary>
public string enCode { get; set; }
/// <summary>
/// 字段注解.
/// </summary>
public string fullName { get; set; }
/// <summary>
/// 字段状态.
/// </summary>
public int enabledMark { get; set; }
/// <summary>
/// 字段说明.
/// </summary>
public string description { get; set; }
/// <summary>
/// 排序.
/// </summary>
public long? sortCode { get; set; }
/// <summary>
/// 规则(0:主表1副表)
/// </summary>
public int? fieldRule { get; set; }
/// <summary>
/// 子表关联字段.
/// </summary>
public string childTableKey { get; set; }
}