| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | |
| | | namespace IBox.WinFrmUI |
| | | namespace IBox.WinFrmUI |
| | | { |
| | | public class CalcValue : System.ICloneable |
| | | { |
| | | public CalcValue() { } |
| | | public CalcValue(CalcValue rhs) |
| | | public CalcValue(CalcValue rhs) |
| | | { |
| | | this.CalcSuccess = rhs.CalcSuccess; |
| | | this.TargetFlow = rhs.TargetFlow; |
| | |
| | | /// <summary> |
| | | /// 控制模式:1:设定压力控制,2:设定开泵方案控制 |
| | | /// </summary> |
| | | public string ControlType { get; set;} |
| | | public string ControlType { get; set; } |
| | | |
| | | public double TargetFlow { get; set; } |
| | | |