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.

25 lines
688 B

2 months ago
2 months ago
  1. package com.example.demo.mapper.coin;
  2. import com.example.demo.domain.vo.coin.AiEmotionExportRecordVO;
  3. import org.apache.ibatis.annotations.Mapper;
  4. import org.apache.ibatis.annotations.Param;
  5. /**
  6. * @program: GOLD
  7. * @ClassName AiEmotionMapper
  8. * @description:
  9. * @author: huangqizhen
  10. * @create: 202506-29 16:48
  11. * @Version 1.0
  12. **/
  13. @Mapper
  14. public interface AiEmotionMapper {
  15. void updateStatus(
  16. @Param("recordId") Long recordId,
  17. @Param("state") Integer state,
  18. @Param("url") String url,
  19. @Param("reason") String reason,
  20. @Param("dataNum") Integer dataNum
  21. );
  22. AiEmotionExportRecordVO getRecordById(Long recordId);
  23. }