未解决的的问题
传智健康项目
1. 在Controller层中构造出Date数据类型,传入Dao层时与mysql中的date字段类型不能匹配(也可能是mybatis的问题),查出的值始终为0
Service层
Date orderDate = orderSetting.getOrderDate();
long count = orderSettingDao.findCountByOrderDate(orderDate);
Dao层的mybatis配置文件
<select id="findCountByOrderDate" parameterType="date" resultType="long">
select count(id) from t_ordersetting where orderDate = #{orderDate};
</select>