|
|
@ -1,5 +1,6 @@ |
|
|
|
package com.zc.business.controller; |
|
|
|
|
|
|
|
import java.util.HashMap; |
|
|
|
import java.util.List; |
|
|
|
import javax.servlet.http.HttpServletResponse; |
|
|
|
|
|
|
@ -132,5 +133,13 @@ public class DcPublishManageController extends BaseController |
|
|
|
{ |
|
|
|
return AjaxResult.success(dcPublishManageService.releaseTrendsPublishManage()); |
|
|
|
} |
|
|
|
|
|
|
|
//统计服务,月发布渠道趋势分析
|
|
|
|
@PostMapping("/monthTrendsPublishManage") |
|
|
|
public AjaxResult monthTrendsPublishManage(@RequestBody DcPublishManage dcPublishManage) |
|
|
|
{ |
|
|
|
if (dcPublishManage==null||dcPublishManage.getPublishTime()==null){ |
|
|
|
return AjaxResult.error("参数错误"); |
|
|
|
} |
|
|
|
return AjaxResult.success(dcPublishManageService.monthTrendsPublishManage(dcPublishManage)); |
|
|
|
} |
|
|
|
} |
|
|
|