|
@@ -66,7 +66,7 @@ import org.springframework.web.bind.annotation.RestController;
|
|
|
* @create 2022-02-28 16:17:48
|
|
|
* @describe 渠道管理前端控制器
|
|
|
*/
|
|
|
-@Api("渠道管理API")
|
|
|
+@Api(tags = "渠道管理API")
|
|
|
@RestController
|
|
|
@RequestMapping("/api/v1/mp/channel/*")
|
|
|
@Component
|
|
@@ -443,6 +443,10 @@ public class ChannelController extends BaseApiController {
|
|
|
* @return
|
|
|
*/
|
|
|
@PostMapping(value = "site/detail")
|
|
|
+ @ApiOperation("获取我的下级渠道详细信息")
|
|
|
+ @ApiResponses(
|
|
|
+ @ApiResponse(code = 200, message = "成功", response = ChannelVO.class)
|
|
|
+ )
|
|
|
public AjaxResult getSiteDetail(@RequestBody Channel channel) {
|
|
|
if (null == channel || null == channel.getChannelId()) {
|
|
|
return error(ErrorCodeEnum.ERROR_CODE_1001);
|