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)
|
{
|
|
}
|
}
|
|
}
|
}
|