You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
797 B
34 lines
797 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BBWY.Client.Models.APIModel
|
|
{
|
|
public class GetDictionaryByKeyResponse
|
|
{
|
|
/// <summary>
|
|
/// 字典类型
|
|
/// </summary>
|
|
public string Key { get; set; }
|
|
/// <summary>
|
|
/// 字典类型名称
|
|
/// </summary>
|
|
public string KeyName { get; set; }
|
|
/// <summary>
|
|
/// 字典值列表
|
|
/// </summary>
|
|
public IList<DicValue> DicValueList { get; set; }
|
|
}
|
|
|
|
public class DicValue
|
|
{
|
|
/// <summary>
|
|
/// 字典值
|
|
/// </summary>
|
|
public string Value { get; set; }
|
|
/// <summary>
|
|
/// 字典值标签
|
|
/// </summary>
|
|
public string ValueName { get; set; }
|
|
}
|
|
}
|
|
|