Files
2024-04-23 10:16:16 +08:00

38 lines
802 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.VisualDev.Engine;
/// <summary>
/// 实体字段模型
/// 版 本V3.0.0
/// 版 权引迈信息技术有限公司https://www.jnpfsoft.com
/// 作 者JNPF开发平台组.
/// </summary>
[SuppressSniffer]
public class EntityFieldModel
{
/// <summary>
/// 字段名称.
/// </summary>
public string Field { get; set; }
/// <summary>
/// 字段说明.
/// </summary>
public string FieldName { get; set; }
/// <summary>
/// 数据类型.
/// </summary>
public string DataType { get; set; }
/// <summary>
/// 数据长度.
/// </summary>
public string DataLength { get; set; }
/// <summary>
/// 主键.
/// </summary>
public int? PrimaryKey { get; set; }
}