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.

26 lines
505 B
C#

12 months ago
using SqlSugar;
namespace DS.WMS.Core.System.Entity;
/// <summary>
/// 用户角色对应关系
/// </summary>
10 months ago
[SqlSugar.SugarTable("sys_role_user")]
12 months ago
public class SysRoleUser
{
/// <summary>
/// ID
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
/// <summary>
/// 用户id
/// </summary>
11 months ago
public long? UserId { get; set; }
12 months ago
/// <summary>
/// 角色
/// </summary>
11 months ago
public long? RoleId { get; set; }
12 months ago
}