ToolMetaMapper.java
393 Bytes
package com.xly.mapper;
import com.xly.entity.ToolMeta;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository
@Mapper
public interface ToolMetaMapper {
// XML配置方式
@Select("SELECT A.* FROM ai_tool AS A order by iOrder")
List<ToolMeta> findAll();
}