namespace HStation.Dto
{
public class AddXhsPumpPhartMappingInput
{
///
/// 泵 id
///
[Required, Range(1, long.MaxValue, ErrorMessage = "PumpID 必须大于0")]
public long PumpID { get; set; }
///
/// 图表id
///
public long DiagramID { get; set; }
///
/// 别名
///
public string OtherName { get; set; }
///
/// 重要度
///
public int Importance { get; set; }
}
}