在 MyBatis 中查询当天的数据,可以使用 MySQL 的 CURDATE()
函数来获取当前日期,然后将该值传递给查询语句。
以下是一个示例的 Mapper 接口方法和对应的 XML 配置文件:
public List<YourEntity> selectByCurrentDate();
<select id="selectByCurrentDate" resultType="YourEntity">
SELECT * FROM your_table
WHERE date_column = CURDATE()
</select>
在上述示例中,YourEntity
是你自己定义的实体类,your_table
是你要查询的表名,date_column
是你要查询的日期列名。
使用该方法,即可查询到当天的数据。