PrestigeApi.dart 466 Bytes
/*
 * @author lsy
 * @date   2019-09-16
 **/
import 'package:gmalpha_flutter/Annotations/anno/Get.dart';
import 'package:gmalpha_flutter/Annotations/anno/Query.dart';
import 'package:gmalpha_flutter/Annotations/anno/ServiceCenter.dart';
import 'package:gmalpha_flutter/PrestigeModel/service/remote/entity/PrestigeEntity.dart';
@ServiceCenter()
abstract class PrestigeApi{

  @Get("api/v1/reputations")
  PrestigeEntity getReputations(@Query("user_id")int userId);

}