apzl_leasing/calc/com/tenwa/reckon/copydata/CalcRentCompare.java
2018-06-03 22:26:41 +08:00

18 lines
440 B
Java

package com.tenwa.reckon.copydata;
import com.amarsoft.are.jbo.BizObject;
import com.tenwa.comm.util.jboutil.BizObjectCompare;
public class CalcRentCompare implements BizObjectCompare{
@Override
public boolean ObjectCompare(BizObject cObject, BizObject toObject)
throws Exception {
if(cObject.getAttribute("plan_list").getString().equals(toObject.getAttribute("plan_list").getString())){
return true;
}
return false;
}
}