You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
321 B
17 lines
321 B
3 years ago
|
part of 'api.dart';
|
||
|
|
||
|
class _SarsApi {
|
||
|
_City city = _City();
|
||
|
_LoginAndSignup login = _LoginAndSignup();
|
||
|
}
|
||
|
|
||
|
class _City {
|
||
|
///查询所有的城市信息
|
||
|
String get allCity => '/app/city/allCity';
|
||
|
}
|
||
|
|
||
|
class _LoginAndSignup {
|
||
|
///查询所有小区信息
|
||
|
String get allCommunity => '/app/login/findAllCommunity';
|
||
|
}
|