|  |  | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     @ApiOperation(value = "手机号快捷登录", notes = "客户端小程序") | 
 |  |  |     @ApiOperation(value = "手机号快捷登录", notes = "员工端小程序") | 
 |  |  |     @PostMapping("/getWxMiniPhoneLogin") | 
 |  |  |     public ApiResponse<AccountResponse> getWxMiniPhone(@Valid @RequestBody WxPhoneRequest wxPhoneRequest) { | 
 |  |  |         return  ApiResponse.success("获取成功",usersService.getWxMiniPhoneLogin(wxPhoneRequest)); | 
 |  |  | 
 |  |  |         crmCustomerListRequest.setUserId(getUserId()); | 
 |  |  |         return  ApiResponse.success(getCrmDataService.getCrmCustomerList(crmCustomerListRequest)); | 
 |  |  |     } | 
 |  |  |   | 
 |  |  |     @UserLoginRequired | 
 |  |  |     @ApiOperation(value = "分类数据 - 中台", notes = "员工端小程序") | 
 |  |  |     @PostMapping("/getCatalogList") | 
 |  |  |     @ApiImplicitParams({ | 
 |  |  |             @ApiImplicitParam(paramType = "header", dataType = "String", name = "token", value = "用户token值", required = true) | 
 |  |  |     }) | 
 |  |  |     public ApiResponse<List<ZTCatalogInfoResponse>> getCatalogList (@RequestBody ZTCatalogListRequest ztCatalogListRequest ) { | 
 |  |  |         List<ZTCatalogInfoResponse> ztCatalogInfoResponseList = getZhongTaiDataService.getCatalogList(ztCatalogListRequest); | 
 |  |  |         return ApiResponse.success("查询成功",ztCatalogInfoResponseList); | 
 |  |  |     } | 
 |  |  |   | 
 |  |  |     @UserLoginRequired | 
 |  |  |     @ApiOperation(value = "标签数据 - 中台", notes = "员工端小程序") | 
 |  |  |     @PostMapping("/getCataLogTagList") | 
 |  |  |     @ApiImplicitParams({ | 
 |  |  |             @ApiImplicitParam(paramType = "header", dataType = "String", name = "token", value = "用户token值", required = true) | 
 |  |  |     }) | 
 |  |  |     public ApiResponse<List<ZTTagInfoResponse>> getCataLogTagList(@RequestBody ZTCatalogListRequest ztCatalogListRequest ) { | 
 |  |  |         List<ZTTagInfoResponse> ztTagInfoResponseList = getZhongTaiDataService.getCataLogTagList(ztCatalogListRequest); | 
 |  |  |         return ApiResponse.success("查询成功",ztTagInfoResponseList); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     @UserLoginRequired | 
 |  |  |     @ApiOperation(value = "用户注销", notes = "员工端小程序") |