BUGFIX: format;

This commit is contained in:
shahaibo
2023-10-20 14:47:18 +08:00
parent f18c27fe02
commit 9fa605f83e
134 changed files with 1345 additions and 1203 deletions

View File

@@ -23,6 +23,7 @@ import java.util.List;
public interface LibraryService extends IService<Library> {
/**
* 根据用户id和一等级查询
*
* @param accountId
* @param level1Types
* @return
@@ -31,6 +32,7 @@ public interface LibraryService extends IService<Library> {
/**
* 分页查询library
*
* @param query
* @return
*/
@@ -46,27 +48,31 @@ public interface LibraryService extends IService<Library> {
/**
* 编辑library 文件名
*
* @param libraryUpdateDTO
*/
void updateLibraryName(LibraryUpdateDTO libraryUpdateDTO);
/**
* 跟进ids批量查询
*
* @param ids
*/
List<Library> getByIds(List<Long> ids);
/**
* 根据md5集合查询
*
* @param md5List
*/
List<Library> getByMD5List(List<String> md5List);
/**
* 根据集合url查询
*
* @param urlList
*/
List<LibraryVo> getByUrlList(List<String> urlList,Long userId);
List<LibraryVo> getByUrlList(List<String> urlList, Long userId);
Boolean updateLibraryLevel2Type(LibraryLevel2TypeUpdateDTO libraryLevel2TypeUpdateDTO);