puhanshu
2022-06-09 dba27fcf4714a1f4153621c610a9342c60b47c77
springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/user/UserService.java
@@ -1191,4 +1191,19 @@
     */
    @PostMapping("/mcs/bindPhone")
    R bindOrAddMcsUser(@RequestBody @Valid BindUserPhoneDTO bindUserPhoneDTO);
    /**
     * 删除用户信息缓存
     * @param phone
     */
    @DeleteMapping("/deleteUserCashByPhone")
    R deleteUserCashByPhone(@RequestParam("phone") String phone);
    /**
     * 通过areaCode获取小程序配置信息
     * @param areaCode
     * @return
     */
    @GetMapping("/sysAppConfig/selectByAreaCode")
    R<SysAppConfigVO> selectByAreaCode(@RequestParam("areaCode") String areaCode);
}