ISceneEditService.java 809 B

123456789101112131415161718192021222324252627282930
  1. package com.fdkankan.scene.service;
  2. import com.fdkankan.common.response.ResultData;
  3. import com.fdkankan.scene.vo.BaseDataParamVO;
  4. import com.fdkankan.scene.vo.BaseSceneParamVO;
  5. import com.fdkankan.scene.vo.LocalesParamVO;
  6. import com.fdkankan.scene.vo.SceneAuthVO;
  7. import java.io.IOException;
  8. import org.springframework.validation.annotation.Validated;
  9. import org.springframework.web.bind.annotation.RequestBody;
  10. /**
  11. * <p>
  12. * 场景编辑
  13. * </p>
  14. *
  15. * @author dengsixing
  16. * @since 2022/3/11
  17. **/
  18. public interface ISceneEditService {
  19. SceneAuthVO getAuth(String num, String token) throws Exception;
  20. ResultData locales(LocalesParamVO param) throws Exception;
  21. ResultData saveTour(BaseDataParamVO param) throws IOException;
  22. ResultData deleteTour(BaseSceneParamVO param) throws Exception;
  23. }