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.
|
|
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); } }
|