|
@@ -32,7 +32,7 @@ public interface PtProfitLogMapper extends BaseMapperX<PtProfitLogDO> {
|
|
|
profitStatus = Arrays.asList(
|
|
|
RECOMMENDED_PERSON_QUOTA.getType(),
|
|
|
DIRECT_REFERRAL_QUOTA.getType(),
|
|
|
- SMALL_QUOTA_CRASH.getType(),
|
|
|
+ SMALL_QUOTA_CRASH_SETTLE.getType(),
|
|
|
ORDER_PAY_INTEGRAL.getType(),
|
|
|
ORDER_REFUND_INTEGRAL.getType(),
|
|
|
ORDER_CANCEL_BY_USER_REFUND_INTEGRAL.getType(),
|
|
@@ -43,6 +43,7 @@ public interface PtProfitLogMapper extends BaseMapperX<PtProfitLogDO> {
|
|
|
profitStatus = Arrays.asList(
|
|
|
RECOMMENDED_PERSON_QUOTA.getType(),
|
|
|
DIRECT_REFERRAL_QUOTA.getType(),
|
|
|
+ SMALL_QUOTA_CRASH.getType(),
|
|
|
ORDER_PAY_INTEGRAL_ANCESTER.getType(),
|
|
|
ORDER_REFUND_INTEGRAL_CONSUMER.getType(),
|
|
|
ORDER_REFUND_INTEGRAL_ANCESTER.getType(),
|
|
@@ -55,6 +56,7 @@ public interface PtProfitLogMapper extends BaseMapperX<PtProfitLogDO> {
|
|
|
PLATFORM_TOTAL_ADD.getType(),
|
|
|
PLATFORM_SERVICE_FEE.getType(),
|
|
|
PLATFORM_REVENUE.getType(),
|
|
|
+ SMALL_QUOTA_CRASH_SETTLE.getType(),
|
|
|
AFTER_CRASH_CALC_PT_TOTAL_QUOTA.getType(),
|
|
|
AFTER_CRASH_CALC_PT_TOTAL_GROSS_QUOTA.getType(),
|
|
|
GROSS_PROFIT_BONUS_QUOTA_PERC_EXCEED_MAXIMUM_LIMIT.getType(),
|
|
@@ -81,7 +83,8 @@ public interface PtProfitLogMapper extends BaseMapperX<PtProfitLogDO> {
|
|
|
.eqIfPresent(PtProfitLogDO::getPercentTemplate, reqVO.getPercentTemplate())
|
|
|
.eqIfPresent(PtProfitLogDO::getUserId, reqVO.getUserId())
|
|
|
.inIfPresent(PtProfitLogDO::getProfitStatus, profitStatus)
|
|
|
- .orderByDesc(PtProfitLogDO::getCreateTime);
|
|
|
+ .orderByDesc(PtProfitLogDO::getCreateTime)
|
|
|
+ .orderByDesc(PtProfitLogDO::getId);
|
|
|
return selectPage(reqVO, queryWrapper);
|
|
|
}
|
|
|
|