|  |  |  | 
|---|
|  |  |  | @Autowired | 
|---|
|  |  |  | private ActionsService actionsService; | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiOperation(value = "客户端小程序登陆", notes = "客户端小程序") | 
|---|
|  |  |  | @GetMapping("/wxLoginCustomer") | 
|---|
|  |  |  | @ApiImplicitParams({ | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @UserLoginRequired | 
|---|
|  |  |  | @LoginRequired | 
|---|
|  |  |  | @ApiOperation(value = "行为内容接口 - 中台", notes = "客户端小程序") | 
|---|
|  |  |  | @GetMapping("/actionDo") | 
|---|
|  |  |  | 
|---|
|  |  |  | return ApiResponse.success("操作成功"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @UserLoginRequired | 
|---|
|  |  |  | @LoginRequired | 
|---|
|  |  |  | @ApiOperation(value = "定制服务列表", notes = "客户端小程序") | 
|---|
|  |  |  | @GetMapping("/getCustomizedNewsList") | 
|---|
|  |  |  | 
|---|
|  |  |  | return ApiResponse.success("查询成功",newsService.getCustomizedNewsList(Constants.ONE,null,null)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @UserLoginRequired | 
|---|
|  |  |  | @LoginRequired | 
|---|
|  |  |  | @ApiOperation(value = "定制服务详情", notes = "客户端小程序") | 
|---|
|  |  |  | @GetMapping("/getCustomizedNewsDetail") | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @UserLoginRequired | 
|---|
|  |  |  | @LoginRequired | 
|---|
|  |  |  | @ApiOperation(value = "产品分页列表 - 中台", notes = "客户端小程序") | 
|---|