fengxiang
2017-12-20 fa974cce2f770623fa68774a2223b9bb12ac7e25
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { Component, OnInit } from '@angular/core';
 
@Component({
  selector: 'app-monitor-point',
  templateUrl: './monitor-point.component.html',
  styles: []
})
export class MonitorPointComponent implements OnInit {
 
  constructor() { }
 
  ngOnInit() {
  }
 
}