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.
19 lines
478 B
19 lines
478 B
using System;
|
|
using System.Collections.Generic;
|
|
using QMFrameWork.Data.Attributes;
|
|
|
|
namespace QMAPP.Entity.Example
|
|
{
|
|
/// <summary>
|
|
/// 用户表
|
|
/// </summary>
|
|
[DBTable(TableName = "T_EXAMPLE_USERINFO", TimeStampColumn = "UpdateTime")]
|
|
public class UserInfo : QMAPP.Entity.Example.Entity.T_EXAMPLE_USERINFO
|
|
{
|
|
/// <summary>
|
|
/// 角色列表
|
|
/// </summary>
|
|
public List<UserAndRole> RoleList { get; set; }
|
|
|
|
}
|
|
}
|
|
|