xufenglei
2018-08-03 ba26f3f66151ee19b0230c38fdbb989886e84c8c
1
2
3
4
5
6
7
8
9
import { Injectable } from '@angular/core';
 
@Injectable()
export class DeviceControllerService {
  public incumbent: 'data'|'status' = 'status';
  public data: any = {};
  constructor() { }
 
}