37 lines
1.0 KiB
C#
37 lines
1.0 KiB
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 批量创建设备信息输入
|
|
/// </summary>
|
|
public class BatchCreateDeviceInfoInput
|
|
{
|
|
/// <summary>
|
|
/// 设备来源类型,只接收 预付费业务系统推送、能耗业务系统推送
|
|
/// </summary>
|
|
public DeviceSourceTypeEnum DeviceSourceType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物联网平台类型
|
|
/// </summary>
|
|
public IoTPlatformTypeEnum IoTPlatform { get; set; }
|
|
|
|
/// <summary>
|
|
/// 集中器在物联网平台中对应的产品Id
|
|
/// </summary>
|
|
public string IoTPlatformProductId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设备地址集合
|
|
/// </summary>
|
|
public List<string> DeviceAddresses { get; set; }
|
|
}
|
|
}
|