You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
424 B
C#
27 lines
424 B
C#
using SqlSugar;
|
|
using System.ComponentModel;
|
|
|
|
namespace Myshipping.Core.Entity;
|
|
|
|
/// <summary>
|
|
/// 用户角色表
|
|
/// </summary>
|
|
[SugarTable("sys_user_role")]
|
|
[Description("用户角色表")]
|
|
public class SysUserRole
|
|
{
|
|
/// <summary>
|
|
/// 用户Id
|
|
/// </summary>
|
|
public long SysUserId { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 系统角色Id
|
|
/// </summary>
|
|
public long SysRoleId { get; set; }
|
|
|
|
|
|
}
|