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