32 lines
777 B
C#
Raw Normal View History

2025-12-23 10:46:53 +08:00
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; }
}
}