CustomerOperService.java 715 B

12345678910111213141516171819202122232425262728293031
  1. package com.jkcredit.invoice.service.customer;
  2. import com.baomidou.mybatisplus.core.metadata.IPage;
  3. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  4. import com.jkcredit.invoice.model.entity.customer.CustomerOper;
  5. /**
  6. * 无车运单导入接口
  7. * @author mumuxigua
  8. */
  9. public interface CustomerOperService {
  10. /**
  11. * 查找所有备案信息
  12. *
  13. * @param page
  14. * @param customerOper
  15. * @return
  16. */
  17. IPage findAllCustomerOper(Page page, CustomerOper customerOper);
  18. /**
  19. * 平台上传指令批次信息保存
  20. *
  21. * @param customerName
  22. * @param operType
  23. * @return
  24. */
  25. String saveCustomerOper(String customerName, int operType);
  26. }