SupplierMaterialService.java 666 B

123456789101112131415161718192021222324252627282930
  1. package com.malk.kuaikeli.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.malk.kuaikeli.entity.SupplierMaterial;
  4. import com.malk.server.common.McR;
  5. import org.springframework.web.multipart.MultipartFile;
  6. public interface SupplierMaterialService extends IService<SupplierMaterial> {
  7. void uploadData(MultipartFile file);
  8. /***
  9. * 同步
  10. */
  11. void sync();
  12. /***
  13. * 查询列表
  14. * @param current
  15. * @param size
  16. * @return
  17. */
  18. McR getList(Integer current,Integer size);
  19. void syncPrice();
  20. void projectSupplierChange(String projectId,String oldId,String newId,String newName);
  21. }