Blame view

web/WebMvc/Controllers/UEditorController.cs 491 Bytes
赖素文 authored
1
2
using Hh.Mes.Service.SystemAuth;
using Microsoft.AspNetCore.Mvc;
3
//using UEditorNetCore;
赖素文 authored
4
5
6
7
8
9

namespace WebMvc
{
    [Route("api/[controller]/[action]")]
    public class UEditorController : BaseController
    {
10
11
        //private readonly UEditorService ue;
        public UEditorController(IAuth authUtil):base(authUtil)
赖素文 authored
12
        {
13
            //this.ue = ue;
赖素文 authored
14
15
16
17
18
        }

        [HttpGet, HttpPost]
        public void Do()
        {
19
           // ue.DoAction(HttpContext);
赖素文 authored
20
21
22
        }
    }
}