You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
863 B

2 years ago
  1. using System;
  2. using System.Linq;
  3. using System.Text;
  4. using SqlSugar;
  5. namespace Entity.Sugar
  6. {
  7. ///<summary>
  8. ///
  9. ///</summary>
  10. [SugarTable("OTB_SYS_OnlineUsers")]
  11. public partial class OTB_SYS_OnlineUsers : ModelContext
  12. {
  13. public OTB_SYS_OnlineUsers(){
  14. }
  15. /// <summary>
  16. /// Desc:
  17. /// Default:
  18. /// Nullable:False
  19. /// </summary>
  20. [SugarColumn(IsPrimaryKey=true)]
  21. public string OrgID {get;set;}
  22. public const string CN_ORGID = "OrgID";
  23. /// <summary>
  24. /// Desc:
  25. /// Default:
  26. /// Nullable:False
  27. /// </summary>
  28. [SugarColumn(IsPrimaryKey=true)]
  29. public string UserID {get;set;}
  30. public const string CN_USERID = "UserID";
  31. }
  32. }