|
|
|
@ -16,7 +16,8 @@ export class tableRow {
|
|
|
|
|
export class PropertyData_PL extends PropertyData_Base { |
|
|
|
|
|
|
|
|
|
direction: number = 0; //毗邻所属方向 0,1,2,3 --- 东南西北
|
|
|
|
|
info: string = ""; |
|
|
|
|
textDirection: string = "";//用户手输的方向
|
|
|
|
|
info: string = ""; //用户输入的内容
|
|
|
|
|
tableData: tableData[] = []; |
|
|
|
|
constructor(key: string, direction: number, info: string, tableData: tableData[]) { |
|
|
|
|
super(key, FacilityType.PL); |
|
|
|
@ -27,6 +28,7 @@ export class PropertyData_PL extends PropertyData_Base {
|
|
|
|
|
|
|
|
|
|
clone(key: string) { |
|
|
|
|
let result = new PropertyData_PL(key, this.direction, this.info, this.tableData); |
|
|
|
|
result.textDirection = this.textDirection; |
|
|
|
|
return result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|