|
|
@ -8,24 +8,27 @@ import { PropertyData_Base } from "../property-data-base"; |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
export class PropertyData_YQHSGX extends PropertyData_Base_IMG { |
|
|
|
export class PropertyData_YQHSGX extends PropertyData_Base_IMG { |
|
|
|
|
|
|
|
|
|
|
|
VRUType: string = ""; //油气回收系统类型
|
|
|
|
VRUType: string = "将卸油时产生的油气进行回收"; //一次油气回收系统类型
|
|
|
|
VRUPumpType: string = ""; //油气回收泵类型
|
|
|
|
VRUType_2: string = "集中式"; //二次油气回收系统类型
|
|
|
|
|
|
|
|
VRUPumpType: string = "mini9000"; //二次油气回收泵类型
|
|
|
|
constructor(key: string) { |
|
|
|
VRUPumpDevice: string = "冷凝+吸附"; //三次油气回收处理装置
|
|
|
|
super(key, "", "", "", FacilityType.JY_YQHSGX); |
|
|
|
MonitoringDevice: string = "监测气液比、密闭性,出现异常可及时预警";//油气回收在线监测装置
|
|
|
|
this.name = "未命名"; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
clone(key: string) { |
|
|
|
constructor(key: string) { |
|
|
|
let result = new PropertyData_YQHSGX(key); |
|
|
|
super(key, "", "", "", FacilityType.JY_YQHSGX); |
|
|
|
result.name = this.name; |
|
|
|
this.name = "未命名"; |
|
|
|
result.VRUType = this.VRUType; |
|
|
|
} |
|
|
|
result.VRUPumpType = this.VRUPumpType; |
|
|
|
|
|
|
|
result.img = this.img; |
|
|
|
clone(key: string) { |
|
|
|
result.pos = this.pos; |
|
|
|
let result = new PropertyData_YQHSGX(key); |
|
|
|
result.info = this.info, |
|
|
|
result.name = this.name; |
|
|
|
|
|
|
|
result.VRUType = this.VRUType; |
|
|
|
|
|
|
|
result.VRUPumpType = this.VRUPumpType; |
|
|
|
|
|
|
|
result.img = this.img; |
|
|
|
|
|
|
|
result.pos = this.pos; |
|
|
|
|
|
|
|
result.info = this.info, |
|
|
|
result.is360 = this.is360; |
|
|
|
result.is360 = this.is360; |
|
|
|
return result; |
|
|
|
return result; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |