14 lines
352 B
Java
14 lines
352 B
Java
package com.ruoyi.cms.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.ruoyi.cms.domain.ai.AiChatDetail;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
import java.util.List;
|
|
|
|
@Repository
|
|
public interface AiChatDetailMapper extends BaseMapper<AiChatDetail> {
|
|
|
|
List<AiChatDetail> getList(AiChatDetail aiChatDetail);
|
|
}
|