1234567891011121314151617181920212223242526272829 |
- using IoTIntegrationPlatform.Model.Model;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace IoTIntegrationPlatform.Model.Dto
- {
- public class PlatformDeviceDetailDto:PlatformDeviceDetail
- {
- ///// <summary>
- ///// 设备类型名称
- ///// </summary>
- //public string DeviceTypeName { get; set; }
- /// <summary>
- /// 通讯方式类型名称
- /// </summary>
- public string DeviceCommunicationTypeName { get; set; }
- /// <summary>
- /// modbus功能码类型名称
- /// </summary>
- public string ModbusRegisterTypeName { get; set; }
- }
- }
|