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.
30 lines
632 B
30 lines
632 B
2 years ago
|
|
||
|
namespace Znyc.Recruitment.Admin.Security.Dtos
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 与小程序缓存保持一致
|
||
|
/// </summary>
|
||
|
public class DictionaryListOutput
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 主键Id
|
||
|
/// </summary>
|
||
|
public long Id { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 父级Id
|
||
|
/// </summary>
|
||
|
public long ParentId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 字典编码
|
||
|
/// </summary>
|
||
|
public string Code { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 字典值
|
||
|
/// </summary>
|
||
|
public string Value { get; set; }
|
||
|
}
|
||
|
}
|