lixiaojun
2022-10-24 2a7f09325b6044b5090fca8c663ef675da9973e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
using Microsoft.AspNetCore.Mvc;
using System.Net;
using System.Net.Http.Headers;
using Microsoft.Extensions.Hosting.Internal;
using Microsoft.AspNetCore.Http.Extensions;
using IStation.Untity;
using Furion.DynamicApiController;
using System.ComponentModel.DataAnnotations;
using Mapster;
 
 
namespace IStation.Application
{
    /// <summary>
    /// MonitorControlNT
    /// </summary>
    [Route("Monitor/Control/NT")]
    [ApiDescriptionSettings("Monitor", Name = "监测南通控制", Order = 400)]
    public class MonitorControlNT_Controller : IDynamicApiController 
    {
 
        /// <summary>
        /// 测试启动
        /// </summary>
        [Route("TestStart@V1.0")]
        [HttpPost]
        public bool TestStart()
        {
            return true;
        }
 
        /// <summary>
        /// 测试关闭
        /// </summary>
        [Route("TestStop@V1.0")]
        [HttpPost]
        public bool TestStop()
        {
            return true;
        }
 
        /// <summary>
        /// 测试变频
        /// </summary>
        [Route("TestChange@V1.0")]
        [HttpPost]
        public bool TestChange(NTTestChangeInput input)
        {
            return true;
        }
 
 
 
 
    }
}