using CZFW.Framework.Attributes;
using System.ComponentModel.DataAnnotations;
namespace CZFW.Framework.Model.ViewModel
{
public class DictItemModel : ModelBase
{
[Display(Name = "数据标识")]
public string DictMark { get; set; }
[Invisible]
public int DictId { get; set; }
///
/// 名称
///
[Display(Name = "名称")]
public string Name { get; set; }
///
/// 值
///
[Invisible]
public string Value { get; set; }
///
/// 描述
///
[Display(Name = "简介")]
public string Description { get; set; }
[Display(Name = "是否默认")]
public bool IsDefault { get; set; }
}
}