You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.7 KiB
58 lines
1.7 KiB
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Volo.Abp.Account;
|
|
using Volo.Abp.Application.Services;
|
|
using Volo.Abp.AspNetCore.Mvc;
|
|
using Win_in.Sfs.Auth.Application.Contracts;
|
|
using Win_in.Sfs.Wms.Pda.Authenticaitons;
|
|
using Win_in.Sfs.Wms.Pda.Models;
|
|
using PdaMenuDto = Win_in.Sfs.Wms.Pda.Models.PdaMenuDto;
|
|
using PdaMenuGroupDto = Win_in.Sfs.Wms.Pda.Models.PdaMenuGroupDto;
|
|
|
|
namespace Win_in.Sfs.Wms.Pda.Controllers.Accounts;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[AllowAnonymous]
|
|
[ApiController]
|
|
[Route($"{PdaHostConst.ROOT_ROUTE}asfasf")]
|
|
|
|
public class TestController: AbpController
|
|
{
|
|
//private readonly IProfileAppService _profileAppService;
|
|
//private readonly ITokenService _tokenService;
|
|
private readonly IUserMenuAppService _userMenuAppService;
|
|
//private readonly IUserWorkGroupAppService _userWorkGroupAppService;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="profileAppService"></param>
|
|
/// <param name="tokenService"></param>
|
|
/// <param name="userMenuAppService"></param>
|
|
/// <param name="userWorkGroupAppService"></param>
|
|
public TestController(
|
|
IUserMenuAppService userMenuAppService
|
|
, IUserWorkGroupAppService userWorkGroupAppService
|
|
)
|
|
{
|
|
//_profileAppService = profileAppService;
|
|
//_tokenService = tokenService;
|
|
_userMenuAppService = userMenuAppService;
|
|
//_userWorkGroupAppService = userWorkGroupAppService;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Test
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpGet("Test")]
|
|
public virtual async Task<List<string>> Test()
|
|
{
|
|
return new List<string>() { "sdfsdf'" };
|
|
}
|
|
}
|
|
|