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.

72 lines
2.3 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

class API {
///HOST
static const String host = 'http://test.akuhotel.com:8804';
///接口基础地址
static const String baseURL = '$host/IntelligentCommunity/butlerApp';
///静态资源路径
static String get resource => '$host/static';
static String image(String path) => '$resource$path';
static const int networkTimeOut = 10000;
static _Auth auth = _Auth();
static _User user = _User();
static _Manage manage = _Manage();
}
class _Auth {
///登录/退出:发送短信验证码
String get sendSMS => '/login/sendMMSLogin';
///登录/退出管家app用户短信登录
String get login => '/login/loginSMSUser';
///登录/退出:管家用户退出账户
String get logout => '/user/signOut';
}
class _User {
///个人资料:查询个人资料信息
String get profile => '/user/personalData/findPersonalData';
///个人资料:获取用户信息
String get info => '/user/personalData/getUserDetail';
///个人资料:修改管家用户昵称
String get updateNickName => '/user/personalData/updateNickName';
///个人资料:发送手机号修改验证码
String get sendTelUpdateCode => '/user/personalData/sendTelUpdateCode';
///个人资料:根据新手机号发送修改验证码
String get updateTel => '/user/personalData/updateTel';
}
class _Manage {
///报事报修:查询 维修部组织信息及人员
String get fixers => '/user/repair/findRepairOrganization';
///活动管理管家app 查询所有的活动管理信息
String get acitivityList => '/user/activity/list';
///活动管理管家app 根据活动管理主键id查询活动详情
String get activityDetail => '/user/activity/findById';
///访客管理管家app显示所有的访客信息 (包含条件搜索)
String get visitorList => '/user/visitor/list';
///报事报修:查询所有的报事报修信息(包含条件搜索)
String get repairList => '/user/repair/list';
///借还管理:查询全部物品
String get borrowList => '/user/borrow/articleList';
///借还管理根据物品主键id查询所有的物品明细信息
String get borrowDetailList => '/user/borrow/articleDetailList';
///借还管理根据物品明细id 查询物品信息
String get borrowItemDetail => '/user/borrow/findById';
}