using System;
using System.Collections.Generic;
namespace YiSha.Model.Param.SystemManage
{
///
/// 创 建:admin
/// 日 期:2021-02-24 16:27
/// 描 述:字典数据实体查询类
///
public class DataDictDetailListParam
{
///
/// 字典类型
///
public string DictType { get; set; }
///
/// 字典键(一般从1开始)
///
public int? DictKey { get; set; }
///
/// 字典值
///
public string DictValue { get; set; }
}
}