|
@@ -1,18 +1,14 @@
|
|
|
package org.jeecg.modules.fileupload.service;
|
|
|
|
|
|
-import cn.com.ctop.common.module.entity.MaterialTagInfo;
|
|
|
import cn.com.ctop.common.module.utils.ExternalMaterialCollection;
|
|
|
import com.alibaba.fastjson.JSONArray;
|
|
|
-import com.alibaba.fastjson.JSONObject;
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
import org.jeecg.common.api.vo.Result;
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
-import java.io.IOException;
|
|
|
-import java.util.Map;
|
|
|
-
|
|
|
/**
|
|
|
* 外部素材集信息表
|
|
|
+ *
|
|
|
* @author jeecg-boot
|
|
|
* 2022-01-12
|
|
|
* @version V1.0
|
|
@@ -31,11 +27,11 @@ public interface IExternalMaterialCollectionService extends IService<ExternalMat
|
|
|
|
|
|
boolean checkMaterialByMd5(String md5) throws Exception;
|
|
|
|
|
|
- Result<Object> addMoreVideosByExcel(MultipartFile file, String materialSource,String userId,Integer mediaType) throws Exception;
|
|
|
+ Result<Object> addMoreVideosByExcel(MultipartFile file, String materialSource, String userId, Integer mediaType) throws Exception;
|
|
|
|
|
|
Result<Object> getIndustryLabel();
|
|
|
|
|
|
Result<Object> createInternalMaterial();
|
|
|
|
|
|
- Result<Object> getTagDetail(String md5);
|
|
|
+ Result<Object> getTagDetail(String md5, Integer mediaType);
|
|
|
}
|