12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Text;
- namespace DllEapEntity.OFILM
- {
- /// <summary>
- /// 获取设备参数传入实体
- /// </summary>
- public class EquipmentParamRequestDto
- {
- /// <summary>
- /// 设备ID
- /// </summary>
- [Required]
- public string EquipmentID { get; set; }
- /// <summary>
- /// 参数列表
- /// </summary>
- [Required]
- public List<string> ParamsList { get; set; }
- }
- }
|