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

45 lines
893 B
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.ComFields;
/// <summary>
/// 常用字段信息输出.
/// </summary>
[SuppressSniffer]
public class ComFieldsInfoOutput
{
/// <summary>
/// id.
/// </summary>
public string id { get; set; }
/// <summary>
/// 长度.
/// </summary>
public string dataLength { get; set; }
/// <summary>
/// 类型.
/// </summary>
public string dataType { get; set; }
/// <summary>
/// 允许空(1-允许0-不允许).
/// </summary>
public int allowNull { get; set; }
/// <summary>
/// 添加时间.
/// </summary>
public DateTime? creatorTime { get; set; }
/// <summary>
/// 列名.
/// </summary>
public string field { get; set; }
/// <summary>
/// 字段注释.
/// </summary>
public string fieldName { get; set; }
}