namespace HStation.Dto
{
///
/// 图表关联
///
public class AddPhartDiagramRelationInput
{
///
/// 图表标识
///
[Required, Range(1, long.MaxValue, ErrorMessage = "DiagramID 必须大于0")]
public long DiagramID { get; set; }
///
/// 对象类型
///
public string ObjectType { get; set; }
///
/// 对象标识
///
[Required, Range(1, long.MaxValue, ErrorMessage = "ObjectID 必须大于0")]
public long ObjectID { get; set; }
///
/// 别名
///
public string OtherName { get; set; }
///
/// 重要度
///
public int Importance { get; set; }
///
/// 说明
///
public string Description { get; set; }
}
}