回调分销实现

This commit is contained in:
张松
2025-10-27 16:28:14 +08:00
parent bf083f698e
commit b73ca2c6e7
3 changed files with 84 additions and 55 deletions

View File

@@ -61,12 +61,12 @@ public interface MkDistributionUserService extends IService<MkDistributionUser>
/**
* 发放分销奖励
* @param orderId 订单id
* @param sourceId 来源id
* @param orderNo 订单编号
* @param amount 金额
* @param userId 用户id
* @param shopId 店铺id
*/
void distribute(Long orderId, String orderNo, BigDecimal amount, Long userId, Long shopId, String type);
void distribute(Long sourceId, String orderNo, BigDecimal amount, Long userId, Long shopId, String type);
}