邵佳豪
3 years ago
12 changed files with 87 additions and 9 deletions
@ -0,0 +1,25 @@
|
||||
|
||||
import { FacilityType } from "../../../../model-data/model-data-facility"; |
||||
import { PropertyData_Base } from "../property-data-base"; |
||||
|
||||
/** |
||||
* 阀门 |
||||
*/ |
||||
export class PropertyData_FM extends PropertyData_Base { |
||||
|
||||
describe: string = "";//描述
|
||||
|
||||
constructor(key: string, describe: string) { |
||||
super(key, FacilityType.JY_FM); |
||||
this.name = "未命名"; |
||||
this.describe = describe; |
||||
|
||||
} |
||||
|
||||
clone(key: string) { |
||||
let result = new PropertyData_FM(key, this.describe); |
||||
result.name = this.name; |
||||
return result; |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue