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 SignalIDInput
{
///
/// 测点标识
///
[Required, Range(1, long.MaxValue, ErrorMessage = "MonitorPointID 必须大于0")]
public long MonitorPointID { get; set; }
///
/// 信号标识
///
[Required, Range(1, long.MaxValue, ErrorMessage = "SignalID 必须大于0")]
public long SignalID { get; set; }
}
}