GroupModelFile.cs 528 B

123456789101112131415161718192021222324
  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. public class Grp_GroupModelFile: EntityBase
  12. {
  13. public int Diid { get; set; }
  14. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(150)")]
  15. public string FilePath { get; set; }
  16. public int Ctable { get; set; }
  17. public int Cid { get; set; }
  18. }
  19. }