24 lines
491 B
C#
24 lines
491 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Syc.Basic.Web.WMS.Dtos.User
|
|
{
|
|
public class SearchUserInput:PagedInput
|
|
{
|
|
public int? departmentId { get; set; }
|
|
|
|
public string email { get; set; }
|
|
|
|
public string mobile { get; set; }
|
|
|
|
public string nickname { get; set; }
|
|
|
|
public string username { get; set; }
|
|
|
|
public string[] roleIds { get; set; }
|
|
}
|
|
}
|