32 lines
777 B
C#
32 lines
777 B
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.IoTPlatformAggregation.Dto
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 平台账号信息
|
|||
|
|
/// </summary>
|
|||
|
|
public class IoTPlatformAccountInfoOutput
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 物联网平台类型
|
|||
|
|
/// </summary>
|
|||
|
|
public IoTPlatformTypeEnum IoTPlatformType { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 平台账号
|
|||
|
|
/// </summary>
|
|||
|
|
public string IoTPlatformAccount { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 平台账号手机号
|
|||
|
|
/// </summary>
|
|||
|
|
public string IoTPlatformPhoneNumber { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|