using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace DllEapEntity.OFILM { /// /// 获取设备参数返回值 /// public class EquipmentParamResponseDto { /// /// 设备号 /// public string EquipmentID { get; set; } /// /// 参数值列表 /// public IEnumerable Parameters { get; set; } } /// /// 设备参数 /// public class EquipmentParameter { /// /// 参数名称 /// public string ParamName { get; set; } /// /// 参数值 /// public string ParamValue { get; set; } } }