南歧nc65对接修改

This commit is contained in:
hjx
2025-12-06 21:57:17 +08:00
parent 7ff3054dc9
commit 8527d24d48
9 changed files with 121 additions and 22 deletions
@@ -1025,7 +1025,7 @@ public class UserShipperApplicationService {
}
public UserShipperPo getShipperSummaryData(Long userId) {
public com.mhd.common.core.domain.po.UserShipperPo getShipperSummaryData(Long userId) {
return userShipperDomainService.getShipperSummaryData(userId);
}
}
@@ -59,5 +59,5 @@ public interface UserShipperRepositoryInterface extends IService<UserShipperEnti
SettlementInfoQueryVo getSettlementInfoByUserId(Long userId);
public UserShipperPo getShipperSummaryData(Long userId);
public com.mhd.common.core.domain.po.UserShipperPo getShipperSummaryData(Long userId);
}
@@ -27,5 +27,5 @@ public interface UserShipperMapper extends BaseMapper<UserShipperEntity> {
List<UserShipperEntity> selectBySealId(@Param("userShipperEntity") UserShipperEntity userShipperEntity);
public UserShipperPo getShipperSummaryData(Long userId);
public com.mhd.common.core.domain.po.UserShipperPo getShipperSummaryData(Long userId);
}
@@ -163,7 +163,7 @@ public class UserShipperRepositoryImpl extends ServiceImpl<UserShipperMapper, Us
}
@Override
public UserShipperPo getShipperSummaryData(Long userId) {
public com.mhd.common.core.domain.po.UserShipperPo getShipperSummaryData(Long userId) {
return shipperMapper.getShipperSummaryData(userId);
}
}
@@ -224,7 +224,7 @@ public class UserShipperDomainService {
return userShipperRepositoryInterface.getSettlementInfoByUserId(userId);
}
public UserShipperPo getShipperSummaryData(Long userId) {
public com.mhd.common.core.domain.po.UserShipperPo getShipperSummaryData(Long userId) {
return userShipperRepositoryInterface.getShipperSummaryData(userId);
}
}