南歧nc65对接
This commit is contained in:
+2
@@ -58,4 +58,6 @@ public interface UserShipperRepositoryInterface extends IService<UserShipperEnti
|
||||
SettlementInfoQueryVo getAuthorizedAmountByShipperId(Long shipperId);
|
||||
|
||||
SettlementInfoQueryVo getSettlementInfoByUserId(Long userId);
|
||||
|
||||
public UserShipperPo getShipperSummaryData(Long userId);
|
||||
}
|
||||
|
||||
+2
@@ -26,4 +26,6 @@ public interface UserShipperMapper extends BaseMapper<UserShipperEntity> {
|
||||
List<UserShipperEntity> getChooseShipper(@Param("userIdList") List<Long> userIdList);
|
||||
|
||||
List<UserShipperEntity> selectBySealId(@Param("userShipperEntity") UserShipperEntity userShipperEntity);
|
||||
|
||||
public UserShipperPo getShipperSummaryData(Long userId);
|
||||
}
|
||||
|
||||
+5
@@ -161,4 +161,9 @@ public class UserShipperRepositoryImpl extends ServiceImpl<UserShipperMapper, Us
|
||||
BeanUtils.copyProperties(entity, queryVo);
|
||||
return queryVo;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UserShipperPo getShipperSummaryData(Long userId) {
|
||||
return shipperMapper.getShipperSummaryData(userId);
|
||||
}
|
||||
}
|
||||
|
||||
+4
@@ -223,4 +223,8 @@ public class UserShipperDomainService {
|
||||
public SettlementInfoQueryVo getSettlementInfoByUserId(Long userId) {
|
||||
return userShipperRepositoryInterface.getSettlementInfoByUserId(userId);
|
||||
}
|
||||
|
||||
public UserShipperPo getShipperSummaryData(Long userId) {
|
||||
return userShipperRepositoryInterface.getShipperSummaryData(userId);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user