Grp_CheckBoxs.cs 882 B

123456789101112131415161718192021222324252627282930313233
  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. [SugarTable("Grp_CheckBoxs")]
  9. public class Grp_CheckBoxs : EntityBase
  10. {
  11. /// <summary>
  12. /// 团组id
  13. /// </summary>
  14. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  15. public int Diid { get; set; }
  16. /// <summary>
  17. /// 选中区域 Top, Left, Right
  18. /// </summary>
  19. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(30)")]
  20. public string CbType { get; set; }
  21. /// <summary>
  22. /// 选中的值
  23. /// </summary>
  24. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(500)")]
  25. public string CbValues { get; set; }
  26. }
  27. public class Grp_CheckBoxsView: Grp_CheckBoxs
  28. {
  29. }
  30. }