修改添加系统模特到个人lib接口和保存模特接口

This commit is contained in:
2025-04-02 13:32:12 +08:00
parent a1b8f9e000
commit 88796f7f28
5 changed files with 14 additions and 37 deletions

View File

@@ -8,9 +8,9 @@ import com.ai.da.model.vo.LibraryVo;
import com.ai.da.model.vo.QueryLibraryPageVO;
import com.baomidou.mybatisplus.extension.service.IService;
import javax.validation.Valid;
import java.text.ParseException;
import java.util.List;
import java.util.Map;
/**
* 服务类
@@ -89,5 +89,5 @@ public interface LibraryService extends IService<Library> {
void moveLibraryDate() throws ParseException;
Long addSysModelToLib(long sysModelId);
Map<String, String> addSysModelToLib(long sysModelId);
}