fengxiang
2018-08-13 7b3aa6c1a9c399e318d24494a30099bbb18cb97b
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() { }
 
}