35 lines
970 B
C#
Raw Normal View History

2026-01-04 16:22:49 +08:00
using JiShe.ServicePro.Core;
using JiShe.ServicePro.Enums;
2025-12-22 15:36:35 +08:00
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 IoTPlatformProductThingModelInfoInput
2025-12-22 15:36:35 +08:00
{
/// <summary>
/// 物联网平台类型,默认没有指定
/// </summary>
[Required]
public IoTPlatformTypeEnum IoTPlatformType { get; set; }
2026-01-04 16:22:49 +08:00
/// <summary>
/// 物联网平台中对应产品物模型属性或者事件类型 <see cref="DataDictionaryTypeConst"/>
/// </summary>
public string FiledType { get; set; }
2025-12-22 15:36:35 +08:00
/// <summary>
/// 物联网平台中对应的产品Id
/// </summary>
[Required]
public string IoTPlatformProductId { get; set; }
}
}