namespace Znyc.CloudCar.Model.Dtos.Dictionary
{
public class DictionaryOutput
{
public long Id { get; set; }
///
/// 父级Id
///
public long ParentId { get; set; }
///
/// 字典编码
///
public string Code { get; set; }
///
/// 字典值
///
public string Value { get; set; }
///
/// 字典名称
///
public string Name { get; set; }
}
}