@select模糊查询拼接

注解方式模糊查询拼接

	// 获取月份订单数据
    @Select("select * from XSMEC_CO_CO_LINE where BORN_DATE like concat(#{date},'%')")
    List<XsmecCoCoLine> getCoCoLineListByMonth(@Param("date") String date);

猜你喜欢

转载自blog.csdn.net/qq_45850872/article/details/111642017