Grp_DeleFile.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Entities.Groups
  7. {
  8. /// <summary>
  9. /// 团组附件表
  10. /// </summary>
  11. [SugarTable("Grp_DeleFile")]
  12. public class Grp_DeleFile:EntityBase
  13. {
  14. /// <summary>
  15. /// 团组Id
  16. /// </summary>
  17. [SugarColumn(IsNullable =true,ColumnDataType ="int")]
  18. public int Diid { get; set; }
  19. /// <summary>
  20. /// 类别标识
  21. /// </summary>
  22. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  23. public int Category { get; set; }
  24. /// <summary>
  25. /// 次级类别
  26. /// </summary>
  27. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  28. public int Kind { get; set; }
  29. /// <summary>
  30. /// 文件名
  31. /// </summary>
  32. [SugarColumn(IsNullable = true, ColumnDataType = "Varchar(100)")]
  33. public string FileName { get; set; }
  34. /// <summary>
  35. /// 文件路径
  36. /// </summary>
  37. [SugarColumn(IsNullable = true, ColumnDataType = "Varchar(100)")]
  38. public string FilePath { get; set; }
  39. }
  40. }