|  |  | 
 |  |  |     private ActionsService actionsService; | 
 |  |  |  | 
 |  |  |  | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     @ApiOperation(value = "客户端小程序登陆", notes = "客户端小程序") | 
 |  |  |     @GetMapping("/wxLoginCustomer") | 
 |  |  |     @ApiImplicitParams({ | 
 |  |  | 
 |  |  |     @ApiImplicitParams({ | 
 |  |  |             @ApiImplicitParam(paramType = "header", dataType = "String", name = "token", value = "用户token值", required = true), | 
 |  |  |             @ApiImplicitParam(paramType = "query", dataType = "String", name = "id", value = "内容主键", required = true), | 
 |  |  |             @ApiImplicitParam(paramType = "query", dataType = "String", name = "salesId", value = "导购主键(二维码分享)", required = false), | 
 |  |  |     }) | 
 |  |  |     public ApiResponse<ZTCaseInfoResponse> getWholecaseInfo(@RequestParam String id) { | 
 |  |  |         ZTCaseInfoResponse ztCaseInfoResponse= getZhongTaiDataService.getWholecaseInfo(id,getUserType(),getMemberId()); | 
 |  |  |     public ApiResponse<ZTCaseInfoResponse> getWholecaseInfo(@RequestParam String id,String salesId) { | 
 |  |  |         ZTCaseInfoResponse ztCaseInfoResponse= getZhongTaiDataService.getWholecaseInfo(id,getUserType(),getMemberId(),salesId); | 
 |  |  |         return ApiResponse.success("查询成功",ztCaseInfoResponse); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  | 
 |  |  |     @ApiImplicitParams({ | 
 |  |  |             @ApiImplicitParam(paramType = "header", dataType = "String", name = "token", value = "用户token值", required = true), | 
 |  |  |             @ApiImplicitParam(paramType = "query", dataType = "String", name = "id", value = "内容主键", required = true), | 
 |  |  |             @ApiImplicitParam(paramType = "query", dataType = "String", name = "salesId", value = "导购主键(二维码分享)", required = false), | 
 |  |  |     }) | 
 |  |  |     public ApiResponse<ZTProductNewsInfoResponse> getProductNewsInfo(@RequestParam String id) { | 
 |  |  |         ZTProductNewsInfoResponse ztProductNewsInfoResponse= getZhongTaiDataService.getProductNewsInfo(id,getUserType(),getMemberId()); | 
 |  |  |     public ApiResponse<ZTProductNewsInfoResponse> getProductNewsInfo(@RequestParam String id,String salesId) { | 
 |  |  |         ZTProductNewsInfoResponse ztProductNewsInfoResponse= getZhongTaiDataService.getProductNewsInfo(id,getUserType(),getMemberId(),salesId); | 
 |  |  |         return ApiResponse.success("查询成功",ztProductNewsInfoResponse); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  | 
 |  |  |     @ApiImplicitParams({ | 
 |  |  |             @ApiImplicitParam(paramType = "header", dataType = "String", name = "token", value = "用户token值", required = true), | 
 |  |  |             @ApiImplicitParam(paramType = "query", dataType = "String", name = "id", value = "内容主键", required = true), | 
 |  |  |             @ApiImplicitParam(paramType = "query", dataType = "String", name = "salesId", value = "导购主键(二维码分享)", required = false), | 
 |  |  |     }) | 
 |  |  |     public ApiResponse<ZTRealcaseInfoResponse> getRealcaseInfo(@RequestParam String id) { | 
 |  |  |         ZTRealcaseInfoResponse ztRealcaseInfoResponse= getZhongTaiDataService.getRealcaseInfo(id,getUserType(),getMemberId()); | 
 |  |  |     public ApiResponse<ZTRealcaseInfoResponse> getRealcaseInfo(@RequestParam String id,String salesId) { | 
 |  |  |         ZTRealcaseInfoResponse ztRealcaseInfoResponse= getZhongTaiDataService.getRealcaseInfo(id,getUserType(),getMemberId(),salesId); | 
 |  |  |         return ApiResponse.success("查询成功",ztRealcaseInfoResponse); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |  | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     @UserLoginRequired | 
 |  |  |     @LoginRequired | 
 |  |  | 
 |  |  |     @ApiImplicitParams({ | 
 |  |  |             @ApiImplicitParam(paramType = "header", dataType = "String", name = "token", value = "用户token值", required = true), | 
 |  |  |             @ApiImplicitParam(paramType = "query", dataType = "String", name = "id", value = "内容主键", required = true), | 
 |  |  |             @ApiImplicitParam(paramType = "query", dataType = "String", name = "salesId", value = "导购主键(二维码分享)", required = false), | 
 |  |  |     }) | 
 |  |  |     public ApiResponse<ZTProductInfoResponse> getProductInfo(@RequestParam String id) { | 
 |  |  |         ZTProductInfoResponse ztProductInfoResponse= getZhongTaiDataService.getProductInfo(id,getUserType(),getMemberId()); | 
 |  |  |     public ApiResponse<ZTProductInfoResponse> getProductInfo(@RequestParam String id,String salesId) { | 
 |  |  |         ZTProductInfoResponse ztProductInfoResponse= getZhongTaiDataService.getProductInfo(id,getUserType(),getMemberId(),salesId); | 
 |  |  |         return ApiResponse.success("查询成功",ztProductInfoResponse); | 
 |  |  |     } | 
 |  |  |  |