package com.example.demo.mapper.coin; import com.example.demo.domain.vo.coin.AiEmotionExportRecordVO; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; /** * @program: GOLD * @ClassName AiEmotionMapper * @description: * @author: huangqizhen * @create: 2025−06-29 16:48 * @Version 1.0 **/ @Mapper public interface AiEmotionMapper { void updateStatus( @Param("recordId") Long recordId, @Param("state") Integer state, @Param("url") String url, @Param("reason") String reason, @Param("dataNum") Integer dataNum ); AiEmotionExportRecordVO getRecordById(Long recordId); }