分销日志

This commit is contained in:
张松
2025-10-29 18:50:26 +08:00
parent 759a393b7d
commit 2c17e5dcdf
6 changed files with 18 additions and 10 deletions

View File

@@ -25,6 +25,6 @@ public interface UserInfoService extends IService<UserInfo> {
Boolean getCode(Long userId, String type);
void updateDistributionAmount(long userId, BigDecimal amount);
void updateDistributionAmount(long userId, BigDecimal amount, Integer isOne);
}

View File

@@ -125,7 +125,7 @@ public interface MkDistributionUserService extends IService<MkDistributionUser>
*/
void distribute(Long sourceId, String orderNo, BigDecimal amount, Long userId, Long shopId, String type);
void updateIncome(BigDecimal pendingIncome, BigDecimal receivedIncome, BigDecimal withdrawIncome, Long id, Long userId);
void updateIncome(BigDecimal pendingIncome, BigDecimal receivedIncome, BigDecimal withdrawIncome, Long id, Long userId, Integer isOne);
Boolean withdraw(long userId, MkDistributionWithdrawFlowDTO withdrawFlowDTO);