Commit 90a50e87 authored by jiaorz's avatar jiaorz

Merge remote-tracking branch 'origin/base-modify' into base-modify

parents f9db50ef 1db5fb4f
...@@ -24,6 +24,7 @@ public class DateController { ...@@ -24,6 +24,7 @@ public class DateController {
@Autowired @Autowired
private ActivityPopularizeUserBiz activityPopularizeUserBiz; private ActivityPopularizeUserBiz activityPopularizeUserBiz;
@Autowired
private UserCouponBiz userCouponBiz; private UserCouponBiz userCouponBiz;
......
...@@ -36,7 +36,7 @@ public class WithDrawRuleVo { ...@@ -36,7 +36,7 @@ public class WithDrawRuleVo {
/** /**
* 最多提现次数(月) * 最多提现次数(月)
*/ */
private Integer maxNumberOfWithdraw; private Integer maxNumberOfMonth;
/** /**
* 最多提现次数(日) * 最多提现次数(日)
......
...@@ -118,8 +118,16 @@ public abstract class AbstractOrderHandle<Biz extends BaseBiz, Detail extends Or ...@@ -118,8 +118,16 @@ public abstract class AbstractOrderHandle<Biz extends BaseBiz, Detail extends Or
return v; return v;
}).collect(Collectors.toList())); }).collect(Collectors.toList()));
} }
}
//判断是否价格为0
// BigDecimal realAmount = detail.getOrder().getRealAmount();
// if(BigDecimal.ZERO.compareTo(realAmount) > 0) {
// throw new BaseException(ResultCode.FAILED_CODE);
// }else if(BigDecimal.ZERO.compareTo(realAmount) = 0) {
// //直接支付
// baseOrderBiz.payNotifyHandle();
// }
}
/** /**
* 计算价格 * 计算价格
* @param detail * @param detail
......
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