| | |
| | | * @return 登录结果 |
| | | */ |
| | | @PostMapping("/loginApplets") |
| | | R loginApplets(@RequestParam("openId") String openId); |
| | | R loginApplets(@RequestParam("openId") String openId,@RequestParam("appid")String appid); |
| | | |
| | | /** |
| | | * 用户登出 |
| | |
| | | * @return 登录结果 |
| | | */ |
| | | @PostMapping("/loginCommunityBackage") |
| | | R loginCommunityBackage(@RequestParam("account") String account, @RequestParam("password") String password); |
| | | R loginCommunityBackage(@RequestParam("account") String account, @RequestParam("password") String password,@RequestParam("appid")String appid); |
| | | |
| | | /** |
| | | * 小程序后台登录 |
| | |
| | | * @return 登录结果 |
| | | */ |
| | | @PostMapping("/loginAppletsBackStage") |
| | | R loginAppletsBackStage(@RequestParam("account") String account, @RequestParam("password") String password); |
| | | R loginAppletsBackStage(@RequestParam("account") String account, @RequestParam("password") String password,@RequestParam("appid")String appid); |
| | | |
| | | /** |
| | | * 认证中心刷新token |
| | |
| | | * @return 登录结果 |
| | | */ |
| | | @PostMapping("/loginShopBackStage") |
| | | R loginShopBackStage(@RequestParam("account") String account, @RequestParam("password") String password); |
| | | R loginShopBackStage(@RequestParam("account") String account, @RequestParam("password") String password,@RequestParam("appid")String appid); |
| | | |
| | | /** |
| | | * 网格综治APP登录 |
| | |
| | | * @return 登录结果 |
| | | */ |
| | | @PostMapping("/loginGridApp") |
| | | R loginGridApp(@RequestParam("account") String account, @RequestParam("password") String password); |
| | | R loginGridApp(@RequestParam("account") String account, @RequestParam("password") String password,@RequestParam("appid")String appid); |
| | | |
| | | /** |
| | | * 网格综治后台登录 |
| | |
| | | * @return 登录结果 |
| | | */ |
| | | @PostMapping("/loginGridBackstage") |
| | | R loginGridBackstage(@RequestParam("account") String account, @RequestParam("password") String password); |
| | | R loginGridBackstage(@RequestParam("account") String account, @RequestParam("password") String password,@RequestParam("appid")String appid); |
| | | |
| | | /** |
| | | * 城管后台登录 |
| | |
| | | * @return 登录结果 |
| | | */ |
| | | @PostMapping("/loginCgBackage") |
| | | R loginCgBackage(@RequestParam("account") String account, @RequestParam("password") String password); |
| | | R loginCgBackage(@RequestParam("account") String account, @RequestParam("password") String password,@RequestParam("appid")String appid); |
| | | |
| | | /** |
| | | * 一键报警APP登录 |
| | |
| | | * @return 登录结果 |
| | | */ |
| | | @PostMapping("/loginAlarmApp") |
| | | R loginAlarmApp(@RequestParam("account") String account, @RequestParam("password") String password); |
| | | R loginAlarmApp(@RequestParam("account") String account, @RequestParam("password") String password,@RequestParam("appid")String appid); |
| | | |
| | | /** |
| | | * 便民服务商家后台登录 |
| | |
| | | * @return 登录结果 |
| | | */ |
| | | @PostMapping("/loginMerchantBackStage") |
| | | R loginMerchantBackStage(@RequestParam("account") String account, @RequestParam("password") String password); |
| | | R loginMerchantBackStage(@RequestParam("account") String account, @RequestParam("password") String password,@RequestParam("appid")String appid); |
| | | |
| | | /** |
| | | * 西区大屏登录 |
| | |
| | | * @return 登录结果 |
| | | */ |
| | | @PostMapping("/loginXQDP") |
| | | R loginXQDP(@RequestParam("account") String account, @RequestParam("password") String password); |
| | | R loginXQDP(@RequestParam("account") String account, @RequestParam("password") String password,@RequestParam("appid")String appid); |
| | | |
| | | /** |
| | | * 微商业街用户登录 |
| | |
| | | * @return 登录结果 |
| | | */ |
| | | @PostMapping("/loginMcsUser") |
| | | R loginMcsUser(@RequestParam("account") String account, @RequestParam("password") String password); |
| | | R loginMcsUser(@RequestParam("account") String account, @RequestParam("password") String password,@RequestParam("appid")String appid); |
| | | } |