using System;
using System.Collections.Generic;
using System.Text;
using Ys.Core.Common;
using FreeSql.DataAnnotations;
namespace djy.Paas.Model
{
///
/// 数据字典
///
public class tb_sys_Dictionary : DataBase
{
///
/// 索引排序
///
public int Indexint { get; set; } = 0;
///
/// 分组名称
///
[Column(StringLength = 50)]
public string GroupName { get; set; }
///
/// key键值
///
[Column(StringLength = 50)]
public string Key { get; set; }
///
/// value内容
///
[Column(StringLength =-2)]
public string Value { get; set; }
///
/// 数据Code值
///
[Column(StringLength = 50)]
public string ValueTow { get; set; }
///
/// 显示标题
///
[Column(StringLength = 50)]
public string Title { get; set; }
///
/// 备注信息
///
[Column(StringLength = 2000)]
public string Memo { get; set; }
///
/// dict数据字典 config 配置 配置会系统启动的时候自动写入配置缓存
///
[Column(StringLength = 10)]
public string DictType { get; set; }
}
}