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.
42 lines
898 B
C#
42 lines
898 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace djy.Paas.Model
|
|
{
|
|
/// <summary>
|
|
/// 数据字典表Dto
|
|
/// </summary>
|
|
public class tb_sys_DictionaryDto
|
|
{
|
|
/// <summary>
|
|
/// 索引排序
|
|
/// </summary>
|
|
/// <summary>
|
|
/// 分组名称
|
|
/// </summary>
|
|
public string GroupName { get; set; }
|
|
/// <summary>
|
|
/// key键值
|
|
/// </summary>
|
|
public string Key { get; set; }
|
|
|
|
/// <summary>
|
|
/// value内容
|
|
/// </summary>
|
|
public string Value { get; set; }
|
|
|
|
/// <summary>
|
|
/// 数据Code值
|
|
/// </summary>
|
|
public string ValueTow { get; set; }
|
|
/// <summary>
|
|
/// 显示标题
|
|
/// </summary>
|
|
public string Title { get; set; }
|
|
|
|
}
|
|
}
|