MenuLoadDto.cs 400 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Dtos.System
  7. {
  8. public class MenuLoadDto
  9. {
  10. public int UserId { get; set; }
  11. /// <summary>
  12. /// 请求端口分类
  13. /// 1 Web 2 Android 3 IOS
  14. /// </summary>
  15. public int PortType { get; set; } = 1;
  16. }
  17. }