package com.example.demo.serviceImpl.coin; import com.example.demo.domain.vo.coin.AiEmotionExportRecordVO; import com.example.demo.domain.vo.coin.ExportVo; import com.example.demo.mapper.coin.AiEmotionMapper; import com.example.demo.mapper.coin.ExportMapper; import com.example.demo.service.coin.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 int 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); } }