diff --git a/src/JiShe.IoT.Application.Contracts/DeviceAggregation/Dto/DevicePropertyValueForApiInput.cs b/src/JiShe.IoT.Application.Contracts/DeviceAggregation/Dto/DevicePropertyValueForApiInput.cs
new file mode 100644
index 0000000..f6b3b18
--- /dev/null
+++ b/src/JiShe.IoT.Application.Contracts/DeviceAggregation/Dto/DevicePropertyValueForApiInput.cs
@@ -0,0 +1,19 @@
+using JiShe.ServicePro.Core;
+using JiShe.ServicePro.Enums;
+using System.ComponentModel.DataAnnotations;
+
+namespace JiShe.IoT.DeviceAggregation
+{
+
+ ///
+ /// 设备属性抄读
+ ///
+ public class DevicePropertyValueForApiInput : IdInput
+ {
+ ///
+ /// 设备在物联网平台中属性标识符列表
+ ///
+ [Required(ErrorMessage = "属性标识符不能为空")]
+ public List PropertyList { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/src/JiShe.IoT.Application.Contracts/DeviceAggregation/IDeviceAggregationService.cs b/src/JiShe.IoT.Application.Contracts/DeviceAggregation/IDeviceAggregationService.cs
index 14680c7..87ef6cf 100644
--- a/src/JiShe.IoT.Application.Contracts/DeviceAggregation/IDeviceAggregationService.cs
+++ b/src/JiShe.IoT.Application.Contracts/DeviceAggregation/IDeviceAggregationService.cs
@@ -46,6 +46,13 @@ namespace JiShe.IoT.DeviceAggregation
///
Task DeviceCommandForApiAsync(DeviceCommandForApiInput input);
+ ///
+ /// 获取设备属性最新值
+ ///
+ ///
+ ///
+ Task> GetDevicePropertyValueForApiAsync(DevicePropertyValueForApiInput input);
+
///
/// 删除设备信息
///
diff --git a/src/JiShe.IoT.Application.Contracts/IoTPlatformAggregation/Dto/UpdateIoTPlatformProductPropertyInfoInput.cs b/src/JiShe.IoT.Application.Contracts/IoTPlatformAggregation/Dto/UpdateIoTPlatformProductPropertyInfoInput.cs
new file mode 100644
index 0000000..2f09bf4
--- /dev/null
+++ b/src/JiShe.IoT.Application.Contracts/IoTPlatformAggregation/Dto/UpdateIoTPlatformProductPropertyInfoInput.cs
@@ -0,0 +1,28 @@
+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 UpdateIoTPlatformProductPropertyInfoInput
+ {
+ ///
+ /// 物联网平台类型,默认没有指定
+ ///
+ [Required]
+ public IoTPlatformTypeEnum IoTPlatformType { get; set; }
+
+ ///
+ /// 物联网平台中对应的产品Id
+ ///
+ [Required]
+ public string IoTPlatformProductId { get; set; }
+ }
+}
diff --git a/src/JiShe.IoT.Application.Contracts/IoTPlatformAggregation/IIoTPlatformAggregationService.cs b/src/JiShe.IoT.Application.Contracts/IoTPlatformAggregation/IIoTPlatformAggregationService.cs
index b5abc45..60c46e3 100644
--- a/src/JiShe.IoT.Application.Contracts/IoTPlatformAggregation/IIoTPlatformAggregationService.cs
+++ b/src/JiShe.IoT.Application.Contracts/IoTPlatformAggregation/IIoTPlatformAggregationService.cs
@@ -37,5 +37,13 @@ namespace JiShe.IoT.IoTPlatformAggregation
///
Task> GetIoTPlatformProductPropertyInfoAsync(IoTPlatformProductPropertyInfoInput input
);
+
+ ///
+ /// 更新平台产品物模型属性信息
+ ///
+ ///
+ ///
+ Task