|
|
@ -604,7 +604,7 @@ public class PointsLogsServiceImpl extends BaseServiceImpl<PointsLogsDao, Points |
|
|
|
pointsLogsEntity.setOperationTime(new Date()); |
|
|
|
pointsLogsEntity.setOperationMode(PointsOperationModeEnum.OPERATION_MODE_ADMIN.getOperationMode()); |
|
|
|
pointsLogsEntity.setRuleCode(PointsConstant.behaviorCodeCode); |
|
|
|
pointsLogsEntity.setBehaviorCode(BehaviorEnum.TOPIC_VIOLATIONS.getValue()); |
|
|
|
pointsLogsEntity.setBehaviorCode(BehaviorEnum.POINTS_RESET.getValue()); |
|
|
|
pointsLogsEntity.setOperationDesc(behaviorCodeInfoByBehaviorCode.getData().getBehaviorDesc()); |
|
|
|
pointsLogsEntity.setPoints(formDto.getPoints()); |
|
|
|
pointsLogsEntity.setOperationType("0"); |
|
|
@ -622,6 +622,7 @@ public class PointsLogsServiceImpl extends BaseServiceImpl<PointsLogsDao, Points |
|
|
|
list.add(pointsLogsEntity); |
|
|
|
} |
|
|
|
baseDao.insertBatchPointsResetLogs(list); |
|
|
|
usersFeignClient.resetUserPoints(); |
|
|
|
return new Result(); |
|
|
|
} |
|
|
|
|
|
|
|