32 lines
776 B
C#
32 lines
776 B
C#
|
|
using JiShe.ServicePro.Enums;
|
|||
|
|
using Swashbuckle.AspNetCore.Annotations;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace JiShe.IoT.IoTPlatformAggregation.Dto
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 平台产品信息
|
|||
|
|
/// </summary>
|
|||
|
|
public class IoTPlatformProductInfoOutput
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 物联网平台类型
|
|||
|
|
/// </summary>
|
|||
|
|
public IoTPlatformTypeEnum IoTPlatformType { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 物联网平台对应的产品Id
|
|||
|
|
/// </summary>
|
|||
|
|
public string IoTPlatformProductId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 产品名称
|
|||
|
|
/// </summary>
|
|||
|
|
public string ProductName { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|