今天 在运行项目的时候报错:There is no getter for property named ‘systemTime‘ in ‘class java.sql.Timestamp‘
问题分析:Mybatis会默认为systemTime作为java.sql.Timestamp 这个类的一个属性,所以需要提供systemTime的get方法,从而导致报错。
解决方法:在接口中进行声明:public List getCardForZonesByCondition(@Param(value="systemTime")Timestamp systemTime);
时间: 2024-11-02 05:05:16