could not find a getter for . in class .错误的原因分析

could not find a getter for ... in class ..异常的原因分析1.get/set不允许方法名中有连续两个大写字母,

could not find a getter for ... in class ..异常的原因分析
1.get/set不允许方法名中有连续两个大写字母,例如

public String getODPType(){

        return this.oDPType;

}

public void setODPType(String      oDPType){

this.oDPType = oDPType;

}