using JiShe.ServicePro.Enums;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.IoT.BusinessSystemAggregation.Dto
{
///
/// 批量创建设备信息输入
///
public class BatchCreateDeviceInfoInput
{
///
/// 设备来源类型,只接收 预付费业务系统推送、能耗业务系统推送
///
public DeviceSourceTypeEnum DeviceSourceType { get; set; }
///
/// 物联网平台类型
///
public IoTPlatformTypeEnum IoTPlatform { get; set; }
///
/// 集中器在物联网平台中对应的产品Id
///
public string IoTPlatformProductId { get; set; }
///
/// 设备地址集合
///
public List DeviceAddresses { get; set; }
}
}