package com.yb.dao; import com.yb.entity.THistoryEntity; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Select; import org.springframework.stereotype.Repository; import java.util.List; @Mapper @Repository public interface ThistoriestDao { // @Select("\n" + // "SELECT * FROM (\n" + // " SELECT id,human,ai FROM t_history where sessionid='m8YvkamB55WFHPKvFHTbP' ORDER BY id DESC LIMIT 5\n" + // ") AS subquery") List getSessionId(String sessionid); }