| 123456789101112131415161718192021 |
- package com.fdkankan.fusion.service;
- import com.fdkankan.fusion.entity.CaseScript;
- import com.baomidou.mybatisplus.extension.service.IService;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author
- * @since 2024-07-11
- */
- public interface ICaseScriptService extends IService<CaseScript> {
- CaseScript getByCaseId(Integer caseId);
- void saveByParam(CaseScript caseScript);
- String getFfmpegVideoImage(String videoPath, String width, String high);
- }
|