namespace Yw.WinFrmUI.Phart { /// /// OL坐标参数 /// public partial class ValveOLCoordinate : JsonModel { public ValveOLCoordinate() { } public ValveOLCoordinate(ValveQLCoordinate rhs) { this.GridNumberX = rhs.GridNumberX; this.GridNumberY = rhs.GridNumberY; this.CoordMinX = rhs.CoordMinX; this.CoordSpaceX = rhs.CoordSpaceX; this.CoordMinY = rhs.CoordMinY; this.CoordSpaceY = rhs.CoordSpaceY; this.StartLineNoY = rhs.StartLineNoY; this.EndLineNoY = rhs.EndLineNoY; } /// /// X坐标间隔数 坐标线比坐标间隔多1 /// public int GridNumberX { get; set; } /// /// Y坐标间隔数 坐标线比坐标间隔多1 /// public int GridNumberY { get; set; } /// /// X坐标最小值 /// public double CoordMinX { get; set; } /// /// X坐标间隔 /// public double CoordSpaceX { get; set; } /// /// Y坐标最小值 /// public double CoordMinY { get; set; } /// /// Y坐标间隔 /// public double CoordSpaceY { get; set; } /// /// 扬程开始线号 /// public int StartLineNoY { get; set; } /// /// 扬程结束线号 /// public int EndLineNoY { get; set; } } }