18586361686
2025-04-21 4453533319a3e21ace5d041a94a10212afffde4e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package tech.aiflowy.ai.controller;
 
import tech.aiflowy.ai.entity.AiDocumentHistory;
import tech.aiflowy.ai.service.AiDocumentHistoryService;
import tech.aiflowy.common.web.controller.BaseCurdController;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
/**
 *  控制层。
 *
 * @author michael
 * @since 2024-08-23
 */
@RestController
@RequestMapping("/api/v1/aiDocumentHistory")
public class AiDocumentHistoryController extends BaseCurdController<AiDocumentHistoryService, AiDocumentHistory> {
    public AiDocumentHistoryController(AiDocumentHistoryService service) {
        super(service);
    }
}