You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using Ys.Core.Common;
|
|
|
|
|
using FreeSql.DataAnnotations;
|
|
|
|
|
namespace djy.Paas.Model
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 数据字典
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class tb_sys_Dictionary : DataBase
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 索引排序
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int Indexint { get; set; } = 0;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 分组名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Column(StringLength = 50)]
|
|
|
|
|
public string GroupName { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// key键值
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Column(StringLength = 50)]
|
|
|
|
|
public string Key { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// value内容
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Column(StringLength =-2)]
|
|
|
|
|
public string Value { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 数据Code值
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Column(StringLength = 50)]
|
|
|
|
|
public string ValueTow { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 显示标题
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Column(StringLength = 50)]
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 备注信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Column(StringLength = 2000)]
|
|
|
|
|
public string Memo { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// dict数据字典 config 配置 配置会系统启动的时候自动写入配置缓存
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Column(StringLength = 10)]
|
|
|
|
|
public string DictType { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|