123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
-
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using CZFW.Framework.Attributes;
- namespace CZFW.Framework.Model.Entity
- {
-
-
-
- [Table("cz_dict_item")]
- public class DictItemEntity : EntityBase
- {
- [Invisible]
- public int DictId { get; set; }
- [Invisible]
- [MaxLength(128)]
- public string DictMark { get; set; }
-
-
-
- [Required(ErrorMessage = @"不能为空")]
- [Display(Name = "名称")]
- [StringLength(128)]
- public string Name { get; set; }
-
-
-
-
- [Display(Name = "值")]
- [StringLength(128)]
- [Invisible]
- public string Value { get; set; }
-
-
-
- [Display(Name = @"描述")]
- [StringLength(256)]
- public string Description { get; set; }
- }
- }
|