using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 南通泵启动入参 /// public class NTStartInput { /// /// 密码 /// [Required] public string Password { get;set; } /// /// 频率 /// [Required, Range(20, 50, ErrorMessage = "频率必须在合理范围内(20-50)")] public double HZ { get; set; } /// /// 泵自动运行模式 /// [Required] public Model.MonitorTestControlParas.eOperatingMode OperatingMode { get; set; } /// /// 泵自动运行值 /// [Required] public double OperatingValue { get; set; } } }