1.修改获取开场白接口的返回结构

2.添加获取评论接口
This commit is contained in:
2025-07-23 16:02:43 +08:00
parent cc82f85e00
commit e74a8bfd98
8 changed files with 109 additions and 12 deletions

View File

@@ -0,0 +1,18 @@
package com.yupi.springbootinit.service.impl;
import org.springframework.stereotype.Service;
import org.springframework.beans.factory.annotation.Autowired;
import java.util.List;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.yupi.springbootinit.model.entity.AiComment;
import com.yupi.springbootinit.mapper.AiCommentMapper;
import com.yupi.springbootinit.service.AiCommentService;
/*
* @author: ziin
* @date: 2025/7/23 16:00
*/
@Service
public class AiCommentServiceImpl extends ServiceImpl<AiCommentMapper, AiComment> implements AiCommentService{
}