基础服务api
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.
 
 

31 lines
893 B

  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPA.SAAS.Manage.Core.Org
  8. {
  9. [SugarTable("bpa_userrole")]
  10. public class BPA_UserRole
  11. {
  12. /// <summary>
  13. /// 主键 Guid
  14. /// </summary>
  15. [SugarColumn(IsPrimaryKey = true, ColumnDataType = "Nvarchar(64)", IsNullable = false)]
  16. public string Id { get; set; }
  17. /// <summary>
  18. /// 用户Id
  19. /// </summary>
  20. [SugarColumn(ColumnDataType = "Nvarchar(64)", ColumnDescription = "用户Id", IsNullable = false)]
  21. public string SysUserId { get; set; }
  22. /// <summary>
  23. /// 角色Id
  24. /// </summary>
  25. [SugarColumn(ColumnDataType = "Nvarchar(64)", ColumnDescription = "角色Id", IsNullable = false)]
  26. public string SysRoleId { get; set; }
  27. }
  28. }