wxr
2022-07-29 da40946e8cf2ffb41157f5c388c525ccccaca692
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
using System;
using Shared;
using HDL_ON.Entity;
using HDL_ON.DAL.Server;
 
namespace HDL_ON.UI
{
    public class Iot_AuthorizedPage
    {
        HttpServerRequest http = new HttpServerRequest();
 
        IntegratedBrand_Iot brand_Iot;
 
        public Iot_AuthorizedPage(IntegratedBrand_Iot brand)
        {
            brand_Iot = brand;
        }
 
        /// <summary>
        /// 搜索第三方设备
        /// </summary>
        private void SearchDevice()
        {
            var pack = http.Search3tyIotDevice(brand_Iot.companyId);
            if(pack!= null)
            {
 
            }
        }
 
        /// <summary>
        /// 获取第三方功能列表
        /// </summary>
        private void GetFunction()
        {
            var pack = http.Get3tyIotDeviceFunctionList(brand_Iot.companyId);
            if(pack != null)
            {
 
            }
        }
 
    }
}