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

5 days ago
  1. package com.example.demo.serviceImpl;
  2. import com.example.demo.domain.vo.AiEmotionExportRecordVO;
  3. import com.example.demo.domain.vo.ExportVo;
  4. import com.example.demo.mapper.AiEmotionMapper;
  5. import com.example.demo.mapper.ExportMapper;
  6. import com.example.demo.service.AiEmotionService;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.stereotype.Service;
  9. /**
  10. * @program: GOLD
  11. * @ClassName AiEmotionServiceImpl
  12. * @description:
  13. * @author: huangqizhen
  14. * @create: 202506-29 14:46
  15. * @Version 1.0
  16. **/
  17. @Service
  18. public class AiEmotionServiceImpl implements AiEmotionService {
  19. @Autowired
  20. private ExportMapper exportMapper;
  21. @Autowired
  22. private AiEmotionMapper aiEmotionMapper;
  23. @Override
  24. public ExportVo updateStatus(Long recordId, int i, String s, String s1, int i1) {
  25. return exportMapper.updateExportData(recordId, i, s, s1, i1);
  26. }
  27. @Override
  28. public AiEmotionExportRecordVO getRecordById(Long id) throws Exception {
  29. return aiEmotionMapper.getRecordById(id);
  30. }
  31. }