admin
2025-05-29 6ca3d7c61ee8d763f00847d90f4365e348f43078
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package tech.aiflowy.ai.controller;
 
import com.mybatisflex.core.query.QueryWrapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import tech.aiflowy.ai.entity.AiFirstMenu;
import tech.aiflowy.ai.entity.AiKnowledge;
import tech.aiflowy.ai.service.AiDocumentChunkService;
import tech.aiflowy.ai.service.AiFirstMenuService;
import tech.aiflowy.ai.service.AiKnowledgeService;
import tech.aiflowy.ai.service.AiLlmService;
import tech.aiflowy.common.domain.Result;
import tech.aiflowy.common.tree.Tree;
import tech.aiflowy.common.web.controller.BaseCurdController;
 
import java.util.List;
 
@RestController
@RequestMapping("/api/v1/aiMenu/FirstMenu")
public class AiFirstMenuController extends BaseCurdController<AiFirstMenuService, AiFirstMenu> {
    public AiFirstMenuController(AiFirstMenuService service) {
        super(service);
    }
 
    @Autowired
    AiFirstMenuService aiFirstMenuService;
 
 
}