36 lines
757 B
C#
36 lines
757 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 UserInfoListItemDto
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public bool status { get; set; }
|
|
|
|
public string username { get; set; }
|
|
|
|
public string nickname { get; set; }
|
|
|
|
public string realname { get; set; }
|
|
|
|
public string description { get; set; }
|
|
|
|
public string[] roleIds { get; set; }
|
|
|
|
public string mobile { get; set; }
|
|
|
|
public string email { get; set; }
|
|
|
|
public int departmentId { get; set; }
|
|
|
|
public string[] positionIds { get; set; }
|
|
|
|
public DateTime createdAt { get; set; }
|
|
}
|
|
}
|