1.添加获取开场白接口

This commit is contained in:
2025-07-18 21:10:21 +08:00
parent 23e5fcdde6
commit d6d3647216
6 changed files with 107 additions and 0 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.AiTemplate;
import com.yupi.springbootinit.mapper.AiTemplateMapper;
import com.yupi.springbootinit.service.AiTemplateService;
/*
* @author: ziin
* @date: 2025/7/18 21:06
*/
@Service
public class AiTemplateServiceImpl extends ServiceImpl<AiTemplateMapper, AiTemplate> implements AiTemplateService{
}