LogisticsEndingAmountService.java 742 B

123456789101112131415161718192021222324252627282930
  1. package com.fjhx.common.service.logistics;
  2. import com.alibaba.fastjson.JSONObject;
  3. import com.fjhx.common.entity.logistics.dto.LogisticsEndingAmountSelectDto;
  4. import com.fjhx.common.entity.logistics.po.LogisticsEndingAmount;
  5. import com.ruoyi.common.core.service.BaseService;
  6. import java.util.List;
  7. /**
  8. * <p>
  9. * 物流期末余额 服务类
  10. * </p>
  11. *
  12. * @author
  13. * @since 2024-05-06
  14. */
  15. public interface LogisticsEndingAmountService extends BaseService<LogisticsEndingAmount> {
  16. /**
  17. * 快递充值汇总
  18. */
  19. List<JSONObject> logisticsRechargeSummary(LogisticsEndingAmountSelectDto dto);
  20. /**
  21. * 快递应付账款汇总
  22. */
  23. List<JSONObject> logisticsPayableSummary(LogisticsEndingAmountSelectDto dto);
  24. }