消防培训系统服务器
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.

24 lines
604 B

using AX.FireTrainingSys.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace AX.FireTrainingSys.DTOs
{
public class UserQueryOptions : QueryOptions
{
/// <summary>
/// 用户帐号(身份证号)。
/// </summary>
public string Name { get; set; }
/// <summary>
/// 真实姓名。
/// </summary>
public string RealName { get; set; }
/// <summary>
/// 角色类型。
/// </summary>
public RoleType? RoleType { get; set; }
}
}