BootstrapAdmin11/Bootstrap.DataAccess/Dict.cs

36 lines
952 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.

namespace Bootstrap.DataAccess
{
/// <summary>
/// 字典表实体
/// author:renshuo
/// date:2016.10.27
/// </summary>
public class Dict
{
/// <summary>
/// 字典主键 数据库自增
/// </summary>
public int ID { get; set; }
/// <summary>
/// 分类
/// </summary>
public string Category { get; set; }
/// <summary>
/// 名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 代号
/// </summary>
public string Code { get; set; }
/// <summary>
/// 1表示系统使用0表示用户自定义 默认为1
/// </summary>
public int Define { get; set; }
/// <summary>
/// 获得/设置 字典定义类别名称
/// </summary>
public string DefineName { get; set; }
}
}