1、generate 积分扣除并添加相关积分详细

2、获取服装category bug修改
This commit is contained in:
2024-06-25 12:18:18 +08:00
parent aacbe92cdc
commit 8ea06c05e9
6 changed files with 116 additions and 41 deletions

View File

@@ -29,7 +29,11 @@ public interface CreditsService extends IService<CreditsDetail> {
void addRecordToCreditsDeduction(Long accountId, String taskId, CreditsEventsEnum creditsEventsEnum);
void taskCreditsDeduction(Long accountId, String taskId);
Boolean taskCreditsDeduction(Long accountId, String taskId);
CreditsDetail getByAccountIdAndChangeEvent(Long accountId, String changeEvent, String changedCredits);
void preInsert(Long accountId, String changeEventName, String taskId);
void updateChangedCredits(String accountId, String taskId);
}