using APT.Infrastructure.Core;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Cors;
using System;
namespace APT.PF.WebApi.Controllers
{
///
/// 需要Token验证的API基类
///
//[Authorize]
public abstract class AuthorizeApiController : APTApiController where T : MesEntityBase, new()
{
}
///
/// 需要Token验证的API基类
///
//[Authorize]
public abstract class AuthorizeTreeApiController : APTTreeApiController where T : MesTreeEntityBase, new()
{
}
}