mac пре 2 година
родитељ
комит
f2a996aa2d

+ 0 - 7
kxs-transfer/src/main/java/com/kxs/transfer/api/mapper/user/KxsUserAddressMapper.java

@@ -16,12 +16,5 @@ import java.util.List;
 @Mapper
 public interface KxsUserAddressMapper extends BaseMapper<KxsUserAddress> {
 
-    /**
-     * 用户地址列表
-     *
-     * @param userId 用户 ID
-     * @return {@link List}<{@link UserAddressListVO}>
-     */
-    List<UserAddressListVO> userAddressList(Long userId);
 }
 

+ 0 - 2
kxs-transfer/src/main/java/com/kxs/transfer/api/mapper/user/KxsUserAmountLogMapper.java

@@ -18,7 +18,5 @@ import org.apache.ibatis.annotations.Param;
 @Mapper
 public interface KxsUserAmountLogMapper extends BaseMapper<KxsUserAmountLog> {
 
-    IPage<UserAmountVariationListVO> getByPage(Page<UserAmountVariationListVO> page, @Param("query") UserAmountVariationListDTO param);
-
 }
 

+ 0 - 1
kxs-transfer/src/main/java/com/kxs/transfer/api/mapper/user/KxsUserWithdrawalMapper.java

@@ -16,6 +16,5 @@ import org.apache.ibatis.annotations.Mapper;
 @Mapper
 public interface KxsUserWithdrawalMapper extends BaseMapper<KxsUserWithdrawal> {
 
-    IPage<WithdrawListVO> getByPage(Page<WithdrawListVO> page);
 }
 

+ 0 - 15
kxs-transfer/src/main/java/com/kxs/transfer/api/service/user/impl/KxsUserWithdrawalServiceImpl.java

@@ -17,20 +17,5 @@ import org.springframework.stereotype.Service;
 @RequiredArgsConstructor
 public class KxsUserWithdrawalServiceImpl extends ServiceImpl<KxsUserWithdrawalMapper, KxsUserWithdrawal> implements KxsUserWithdrawalService {
 
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
 }