|
|
@@ -34,7 +34,7 @@ public class DashboardsController {
|
|
|
*/
|
|
|
@ApiOperation(value = "保存看板", notes = "保存看板", response = RepEntity.class)
|
|
|
@CheckToken
|
|
|
- @Log(module = "看板", name = "#body.bdName", token = "#token")
|
|
|
+ @Log(module = "报表", name = "#body.bdName", token = "#token")
|
|
|
@PostMapping("/inputDashboards")
|
|
|
public RepEntity saveDashboards(@RequestHeader String token, @RequestBody DashboardsInfo body){
|
|
|
return dashboardsService.setDashboards(token, body);
|
|
|
@@ -45,7 +45,7 @@ public class DashboardsController {
|
|
|
*/
|
|
|
@ApiOperation(value = "更新看板", notes = "更新看板", response = RepEntity.class)
|
|
|
@CheckToken
|
|
|
- @Log(module = "看板", name = "#body.bdName", token = "#token")
|
|
|
+ @Log(module = "报表", name = "#body.bdName", token = "#token")
|
|
|
@PostMapping("/updateDashboards")
|
|
|
public RepEntity updateDashboards(@RequestHeader String token,@RequestBody DashboardsInfo body){
|
|
|
return dashboardsService.updateDashboards(token, body);
|