using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace Yi.Framework.Model.Models { /// /// /// [SugarTable("UserRole")] public partial class UserRoleEntity:BaseModelEntity { /// /// /// [SugarColumn(ColumnName="RoleId" )] public long? RoleId { get; set; } /// /// /// [SugarColumn(ColumnName="UserId" )] public long? UserId { get; set; } /// /// 租户Id /// [SugarColumn(ColumnName="TenantId" )] public long? TenantId { get; set; } } }