Files
2023-03-13 15:00:34 +08:00

40 lines
804 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.Systems.Entitys.Dto.ComFields;
/// <summary>
/// 常用字段创建输入.
/// </summary>
[SuppressSniffer]
public class ComFieldsCrInput
{
/// <summary>
/// 长度.
/// </summary>
public int? 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; }
}