Commit 9292ed4b authored by hezhen's avatar hezhen

123

parent 17aabf5e
......@@ -40,7 +40,7 @@ public class CompanyInfoOrderBiz extends BaseBiz<CompanyInfoOrderMapper, Company
BigDecimal payAmount=companyApplyVo.getPayAmount() == null ? BigDecimal.ZERO : companyApplyVo.getPayAmount();
BigDecimal realAmount = mapper.payAmount(companyApplyVo.getId());
Integer isPay = 0;
if (payAmount.compareTo(realAmount) == 1){
if (payAmount.compareTo(realAmount) == 0){
isPay = 1;
}
companyApplyVo.setIsPay(isPay);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment