There is no getter for property named 'effectiveTime' in 'class com.ruoyi.xiaopianpian.domain.FaQi'
时间: 2023-11-19 14:50:26 浏览: 99
Mybatis单个参数的if判断报异常There is no getter for property named 'xxx' in 'class java.lang.Integer'的解决方案
It seems that you are encountering an issue with a missing getter for the 'effectiveTime' property in the 'FaQi' class from the 'com.ruoyi.xiaopianpian.domain' package. To resolve this issue, you need to add a getter method for the 'effectiveTime' property in the 'FaQi' class.
Here is an example of how you can add a getter method in Java:
```java
public class FaQi {
private Date effectiveTime;
// Other class properties and methods
public Date getEffectiveTime() {
return effectiveTime;
}
}
```
By adding this getter method, you should be able to access the 'effectiveTime' property in the 'FaQi' class.
阅读全文