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.
23 lines
517 B
23 lines
517 B
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
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; }
|
|
|
|
}
|
|
}
|
|
|