|
|
|
@ -16,6 +16,7 @@ export class PropertyData_YG extends PropertyData_Base {
|
|
|
|
|
|
|
|
|
|
constructor(key: string,oilProductNo: string,oilTankVolume: string,safeVolume: string,quantity: string,tankFarm: string,oilTankType: string) { |
|
|
|
|
super(key, FacilityType.JY_YG); |
|
|
|
|
this.name = "未命名"; |
|
|
|
|
this.oilProductNo = oilProductNo |
|
|
|
|
this.oilTankVolume = oilTankVolume |
|
|
|
|
this.safeVolume = safeVolume |
|
|
|
@ -26,6 +27,7 @@ export class PropertyData_YG extends PropertyData_Base {
|
|
|
|
|
|
|
|
|
|
clone(key: string) { |
|
|
|
|
let result = new PropertyData_YG(key,this.oilProductNo,this.oilTankVolume,this.safeVolume,this.quantity,this.tankFarm,this.oilTankType); |
|
|
|
|
result.name = this.name; |
|
|
|
|
return result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|