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.
 
 

27 lines
580 B

namespace Znyc.CloudCar.Model.Dtos.Dictionary
{
public class DictionaryOutput
{
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; }
/// <summary>
/// 字典名称
/// </summary>
public string Name { get; set; }
}
}