去掉限制
This commit is contained in:
parent
80bae4a5f2
commit
0452a1d3cd
|
|
@ -295,9 +295,10 @@ public class CashServiceImpl extends ServiceImpl<CashMapper, Cash> implements Ca
|
||||||
.last("limit 1");
|
.last("limit 1");
|
||||||
Cash existData = getOne(qWrapper);
|
Cash existData = getOne(qWrapper);
|
||||||
|
|
||||||
if (existData != null && DateUtil.isSameDay(new Date(), existData.getCreateDt())) {
|
//TODO 注释掉限制一天只能提现一次
|
||||||
|
/*if (existData != null && DateUtil.isSameDay(new Date(), existData.getCreateDt())) {
|
||||||
throw new MsgException("一天只能提现一次");
|
throw new MsgException("一天只能提现一次");
|
||||||
}
|
}*/
|
||||||
|
|
||||||
// ======查询可提现金额
|
// ======查询可提现金额
|
||||||
// 查询商户所有分润
|
// 查询商户所有分润
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue