using JiShe.ServicePro.Core;
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
{
///
/// 产品属性信息输入
///
public class IoTPlatformProductThingModelInfoInput
{
///
/// 物联网平台类型,默认没有指定
///
[Required]
public IoTPlatformTypeEnum IoTPlatformType { get; set; }
///
/// 物联网平台中对应产品物模型属性或者事件类型
///
public string FiledType { get; set; }
///
/// 物联网平台中对应的产品Id
///
[Required]
public string IoTPlatformProductId { get; set; }
}
}