| | |
| | | this.ConstantPressure = rhs.ConstantPressure; |
| | | this.TerminalPressure = rhs.TerminalPressure; |
| | | this.MaxHeight = rhs.MaxHeight; |
| | | this.ConnectionAddress = rhs.ConnectionAddress; |
| | | this.ConnectionType = rhs.ConnectionType; |
| | | this.ModelInfo = rhs.ModelInfo; |
| | | this.ModelPath = rhs.ModelPath; |
| | | this.Paras = rhs.Paras; |
| | | this.Flags = rhs.Flags; |
| | | this.TagName = rhs.TagName; |
| | |
| | | public double MaxHeight { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 连接类型 |
| | | /// </summary> |
| | | public eConnectionType ConnectionType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// IP地址 |
| | | /// </summary> |
| | | public string ConnectionAddress { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 模型信息 |
| | | ///</summary> |
| | | [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] |
| | | public string ModelInfo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 模型路径 |
| | | ///</summary> |
| | | [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] |
| | | public string ModelPath { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 参数 |
| | | ///</summary> |
| | | [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] |