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
25 lines
688 B
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);
|
|
}
|