2025-06-16 17:24:23 +08:00

30 lines
640 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 GetUserInfoDto
{
public int userId { get; set; }
public string username { get; set; }
public string nickname { get; set; }
public string email { get; set; }
public string mobile { get; set; }
public List<string> roles { get; set; }
public List<string> roleName { get; set; }
public string homePath { get; set; } = "/dashboard";
public string departmentName { get; set; }
}
}