namespace HStation.Dto { /// /// /// public class AddXhsPhartGraphInput { /// /// 图表id /// public long DiagramID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 图形类型 /// [Required] public HStation.eGraphType GraphType { get; set; } /// /// 图形参数 /// public string GraphParas { get; set; } /// /// 图形信息 /// public string GraphInfo { get; set; } /// /// 几何类型 /// [Required] public HStation.eGeometryStyle GeometryStyle { get; set; } /// /// 几何参数 /// public string GeometryParas { get; set; } /// /// 几何信息 /// public string GeometryInfo { get; set; } /// /// 显示参数 /// public string DispParas { get; set; } /// /// 拓展参数 /// public string ExtraParas { get; set; } /// /// 参数 /// public Dictionary Paras { get; set; } /// /// 标签 /// public List Flags { get; set; } /// /// 说明 /// public string Description { get; set; } } }