赖素文
authored
|
1
2
|
using Hh.Mes.Service.SystemAuth;
using Microsoft.AspNetCore.Mvc;
|
赖素文
authored
|
3
|
//using UEditorNetCore;
|
赖素文
authored
|
4
5
6
7
8
9
|
namespace WebMvc
{
[Route("api/[controller]/[action]")]
public class UEditorController : BaseController
{
|
赖素文
authored
|
10
11
|
//private readonly UEditorService ue;
public UEditorController(IAuth authUtil):base(authUtil)
|
赖素文
authored
|
12
|
{
|
赖素文
authored
|
13
|
//this.ue = ue;
|
赖素文
authored
|
14
15
16
17
18
|
}
[HttpGet, HttpPost]
public void Do()
{
|
赖素文
authored
|
19
|
// ue.DoAction(HttpContext);
|
赖素文
authored
|
20
21
22
|
}
}
}
|