荣鑫后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
670 B

  1. package com.gaotao.modules.app.service;
  2. import com.gaotao.modules.app.entity.Supplier;
  3. import com.gaotao.modules.app.query.SupplierQuery;
  4. import com.gaotao.modules.base.entity.SupplierData;
  5. import java.util.List;
  6. /**
  7. * @Auther: Zuowenwen
  8. * @Date:2021/07/19 13:06
  9. * @Description: //TODO 描述
  10. */
  11. public interface SupplierService {
  12. List<Supplier> getSupplierList(SupplierQuery supplierQuery);
  13. /**
  14. * @author: sxm
  15. * @description: 获取供应商信息
  16. * @param [site, supplierId]
  17. * @return: com.gaotao.modules.base.entity.SupplierData
  18. * @date: 2023/2/7 17:28
  19. */
  20. SupplierData getSupplier(String site, String supplierId);
  21. }