You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.0 KiB

package com.example.demo.serviceImpl;
import com.example.demo.domain.vo.AiEmotionExportRecordVO;
import com.example.demo.domain.vo.ExportVo;
import com.example.demo.mapper.AiEmotionMapper;
import com.example.demo.mapper.ExportMapper;
import com.example.demo.service.AiEmotionService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
/**
* @program: GOLD
* @ClassName AiEmotionServiceImpl
* @description:
* @author: huangqizhen
* @create: 2025−06-29 14:46
* @Version 1.0
**/
@Service
public class AiEmotionServiceImpl implements AiEmotionService {
@Autowired
private ExportMapper exportMapper;
@Autowired
private AiEmotionMapper aiEmotionMapper;
@Override
public ExportVo updateStatus(Long recordId, int i, String s, String s1, int i1) {
return exportMapper.updateExportData(recordId, i, s, s1, i1);
}
@Override
public AiEmotionExportRecordVO getRecordById(Long id) throws Exception {
return aiEmotionMapper.getRecordById(id);
}
}