|
@@ -604,7 +604,7 @@ public class VipCardRecordServiceImpl extends ServiceImpl<VipCardRecordDao, VipC
|
|
|
for (VipCardRecord vipCardRecord : vipCardRecordList) {
|
|
|
Date startTime = vipCardRecord.getStartTime();
|
|
|
Date endTime = vipCardRecord.getEndTime();
|
|
|
- if (endTime.before(deductedStartDate)) {
|
|
|
+ if (endTime.before(deductedStartDate) || endTime.equals(deductedStartDate)) {
|
|
|
continue;
|
|
|
}
|
|
|
|