|
@@ -49,6 +49,17 @@ public class InnerController extends BaseController {
|
|
sceneProService.move(param);
|
|
sceneProService.move(param);
|
|
return ResultData.ok();
|
|
return ResultData.ok();
|
|
}
|
|
}
|
|
|
|
+ @GetMapping("/copyScene")
|
|
|
|
+ public ResultData copyScene(@RequestParam(required = false) String num){
|
|
|
|
+ if(!checkSign()){
|
|
|
|
+ return ResultData.error(-1,"签名错误");
|
|
|
|
+ }
|
|
|
|
+ if(StringUtils.isEmpty(num)){
|
|
|
|
+ throw new BusinessException(ResultCode.MISSING_REQUIRED_PARAMETERS);
|
|
|
|
+ }
|
|
|
|
+ sceneProService.copy(num);
|
|
|
|
+ return ResultData.ok();
|
|
|
|
+ }
|
|
|
|
|
|
@GetMapping("/getServiceUpTip")
|
|
@GetMapping("/getServiceUpTip")
|
|
public ResultData getServiceUpTip(@RequestParam(required = false) Integer type){
|
|
public ResultData getServiceUpTip(@RequestParam(required = false) Integer type){
|