• 杜欣's avatar
    temp · bb96ff8c
    杜欣 authored
    bb96ff8c
ActivityReportLocal.dart 306 Bytes
/*
 * @author dx
 * @date   2019-09-17
 **/
class ActivityReportLocal {
  static ActivityReportLocal _userRemote;

  ActivityReportLocal._() {}

  static ActivityReportLocal getInstance() {
    if (_userRemote == null) {
      _userRemote = new ActivityReportLocal._();
    }
    return _userRemote;
  }
}