30 lines
684 B
C#
30 lines
684 B
C#
using DotNetCore.CAP;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Syc.Authorize.JwtBearer;
|
|
using Syc.Basic.Web.Services;
|
|
using Syc.Basic.Web.WMS.Dtos.Auth;
|
|
using Syc.Basic.Web.WMS.Entitys;
|
|
using Syc.Basic.Web.WMS.IServices;
|
|
using Syc.Basic.Web.WMS.Repository;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Volo.Abp.Domain.Repositories;
|
|
|
|
namespace Syc.Basic.Web.WMS.Service
|
|
{
|
|
[AllowAnonymous]
|
|
public class TestService:ApiService
|
|
{
|
|
|
|
[HttpGet]
|
|
public async Task<object> GetTest()
|
|
{
|
|
return "admin";
|
|
}
|
|
}
|
|
}
|