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.
 
 
 

18 lines
394 B

namespace Tiobon.Core.Model;
/// <summary>
/// 用户信息表
/// </summary>
public class SysUserInfoRoot<Tkey> where Tkey : IEquatable<Tkey>
{
/// <summary>
/// Id
/// 泛型主键Tkey
/// </summary>
[SugarColumn(IsNullable = false, IsPrimaryKey = true)]
public Tkey Id { get; set; }
[SugarColumn(IsIgnore = true)]
public List<Tkey> RIDs { get; set; }
}