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