|
@@ -1026,7 +1026,7 @@ public class SceneEditController extends BaseController {
|
|
|
* @throws Exception
|
|
|
*/
|
|
|
@CheckCooperationPermit
|
|
|
- @GetMapping(value = "/mosaics/list")
|
|
|
+ @PostMapping(value = "/mosaics/list")
|
|
|
public ResultData getMosaicList(@RequestBody @Validated BaseSceneParamVO param) throws Exception{
|
|
|
return sceneEditInfoService.getMosaicList(param);
|
|
|
}
|
|
@@ -1038,7 +1038,7 @@ public class SceneEditController extends BaseController {
|
|
|
* @throws Exception
|
|
|
*/
|
|
|
@CheckCooperationPermit
|
|
|
- @GetMapping(value = "/waterMark/add")
|
|
|
+ @PostMapping(value = "/waterMark/add")
|
|
|
public ResultData addWaterMark(@RequestBody @Validated BaseFileParamVO param) throws Exception{
|
|
|
return sceneEditInfoService.addWaterMark(param);
|
|
|
}
|
|
@@ -1050,7 +1050,7 @@ public class SceneEditController extends BaseController {
|
|
|
* @throws Exception
|
|
|
*/
|
|
|
@CheckCooperationPermit
|
|
|
- @GetMapping(value = "/waterMark/delete")
|
|
|
+ @PostMapping(value = "/waterMark/delete")
|
|
|
public ResultData deleteWaterMark(@RequestBody @Validated BaseFileParamVO param) throws Exception{
|
|
|
return sceneEditInfoService.deleteWaterMark(param);
|
|
|
}
|