Files
tnb.server/common/Tnb.Common/Dtos/DataBase/TableFieldOutput.cs
2023-06-02 13:55:22 +08:00

41 lines
789 B
C#
Raw Permalink 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.Common.Dtos.DataBase;
/// <summary>
/// 表字段输出.
/// </summary>
[SuppressSniffer]
public class TableFieldOutput
{
/// <summary>
/// 是否主键01.
/// </summary>
public int primaryKey { get; set; }
/// <summary>
/// 是否允许为空.
/// </summary>
public int allowNull { get; set; }
/// <summary>
/// 长度.
/// </summary>
public string dataLength { get; set; }
/// <summary>
/// 类型.
/// </summary>
public string dataType { get; set; }
/// <summary>
/// 列名.
/// </summary>
public string field { get; set; }
/// <summary>
/// 字段注释.
/// </summary>
public string fieldName { get; set; }
}