nnnn
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package com.ruoyi.cai.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.ruoyi.cai.domain.PointChangeLog;
|
||||
|
||||
/**
|
||||
* 积分记录Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2025-12-10
|
||||
*/
|
||||
public interface PointChangeLogService extends IService<PointChangeLog> {
|
||||
|
||||
void rechargeOrderChange(String orderNo, Long userId, Long givePoint);
|
||||
|
||||
void rechargeOrderInviteChange(Long userId, Long givePoint, Long inviteUserId, String traceId);
|
||||
|
||||
void adminChange(Long userId, Long givePoint);
|
||||
|
||||
void adminInvite(Long userId, Long givePoint, Long inviteUserId, String traceId);
|
||||
}
|
||||
Reference in New Issue
Block a user