记得上下班打卡 | git大法好,push需谨慎

Commit 83ad5481 authored by GaoHu's avatar GaoHu

exit 打款判断

parent cc3f39f6
......@@ -180,7 +180,7 @@ public class SmileShowServiceImpl extends ServiceImpl<SmileSchoolMapper, SmileSc
LambdaQueryWrapper<KylinPerformances> queryWrapper = Wrappers.lambdaQuery(KylinPerformances.class);
queryWrapper.eq(KylinPerformances::getPerformancesId, smilePriceParam.getPerformancesId());
LocalDateTime timeEnd = kylinPerformancesMapper.selectOne(queryWrapper).getTimeEnd();
if (timeEnd.isBefore(LocalDateTime.now())) {
if (timeEnd.isAfter(LocalDateTime.now())) {
return AjaxResult.warn("演出尚未结束不能进行打款");
}
return null;
......
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