FilesEntity.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using CZFW.Framework.Attributes;
  2. using CZFW.Framework.Model.Entity;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.ComponentModel.DataAnnotations;
  6. using System.ComponentModel.DataAnnotations.Schema;
  7. using System.Text;
  8. namespace CZKJ.GBRS2.Entity
  9. {
  10. /// <summary>
  11. /// 上传文件
  12. /// </summary>
  13. [Table("cz_gbrs2_files")]
  14. public class FilesEntity:EntityBase
  15. {
  16. /// <summary>
  17. /// 名称
  18. /// </summary>
  19. [Display(Name = "名称")]
  20. [StringLength(64)]
  21. [Required(ErrorMessage = "不能为空")]
  22. public string Name { get; set; }
  23. /// <summary>
  24. /// 文件名称
  25. /// </summary>
  26. [Display(Name = "文件名称")]
  27. [StringLength(128)]
  28. [Invisible]
  29. public string FileName { get; set; }
  30. /// <summary>
  31. /// 简历文件
  32. /// </summary>
  33. [Display(Name = "文件Url")]
  34. [StringLength(1024)]
  35. [Invisible]
  36. public string FileUrl { get; set; }
  37. }
  38. }