using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sugar.Enties { /// /// 登录信息 /// public class LoginUserDTO { /// /// 登录成功返回的用户信息 /// public users User { get; set; } /// /// 角色 /// public List Roles { get; set; } /// /// 许可协议信息 /// public license License { get; set; } /// /// 岗位名 /// public string StationName { get; set; } /// /// 所属部门名,此部门名是级联部门,各级部门名用-连接 /// public string DeptName { get; set; } } }