design detail 新增接口--编辑图层的位置、大小
This commit is contained in:
@@ -13,6 +13,7 @@ import org.springframework.web.bind.annotation.*;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import javax.validation.Valid;
|
||||
import java.io.IOException;
|
||||
|
||||
|
||||
@Api(tags = "design Detail模块")
|
||||
@@ -68,5 +69,9 @@ public class DesignDetailController {
|
||||
return response;
|
||||
}
|
||||
|
||||
|
||||
@ApiOperation(value = "编辑图层大小和位置")
|
||||
@PostMapping("/editLayers")
|
||||
public Response<ComposeLayersVO> editPositionAndScale(@Valid @RequestBody EditLayersPositionAndScaleVO positionAndScaleVO) throws IOException {
|
||||
return Response.success(designItemService.editLayersPositionAndScale(positionAndScaleVO));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user