| 1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace ProductionLineMonitor.Core.Dtos
- {
- public class UserLoginResultInfoDto
- {
- public string JobNo { get; set; }
- public string Name { get; set; }
- public string RoleId { get; set; }
- public string RoleName { get; set; }
- public DateTime? CreateTime { get; set; }
- public IList<MenuDto> MenuDtos { get; set; }
- public bool IsInitialPassword { get; set; }
- }
- }
|