ICaseScriptService.java 456 B

123456789101112131415161718192021
  1. package com.fdkankan.fusion.service;
  2. import com.fdkankan.fusion.entity.CaseScript;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. /**
  5. * <p>
  6. * 服务类
  7. * </p>
  8. *
  9. * @author
  10. * @since 2024-07-11
  11. */
  12. public interface ICaseScriptService extends IService<CaseScript> {
  13. CaseScript getByCaseId(Integer caseId);
  14. void saveByParam(CaseScript caseScript);
  15. String getFfmpegVideoImage(String videoPath, String width, String high);
  16. }