123456789101112131415161718192021222324252627282930313233343536 |
- 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; }
- }
- }
|