GoodsWholesaleService.java 642 B

1234567891011121314151617181920212223
  1. package com.cyksj.service.goods;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.cyksj.model.entity.GoodsWholesale;
  4. import java.util.List;
  5. import java.util.Map;
  6. /**
  7. * 项目名: yhlxj
  8. * 文件名: GoodsWholesaleService
  9. * 创建者: JavaZou
  10. * 创建时间:2024/8/26 11:49
  11. */
  12. public interface GoodsWholesaleService extends IService<GoodsWholesale> {
  13. void depositRefund(Long id, Long adminId) throws Exception;
  14. void wxRefundNotify(Map<String, String> map) throws Exception;
  15. void uploadAccount(List<Object> acountList, Long orderId);
  16. void saveOrUpdateWholesale(GoodsWholesale wholesale) throws Exception;
  17. }