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
26 lines
670 B
package com.gaotao.modules.app.service;
|
|
|
|
import com.gaotao.modules.app.entity.Supplier;
|
|
import com.gaotao.modules.app.query.SupplierQuery;
|
|
import com.gaotao.modules.base.entity.SupplierData;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @Auther: Zuowenwen
|
|
* @Date:2021/07/19 13:06
|
|
* @Description: //TODO 描述
|
|
*/
|
|
public interface SupplierService {
|
|
|
|
List<Supplier> getSupplierList(SupplierQuery supplierQuery);
|
|
|
|
/**
|
|
* @author: sxm
|
|
* @description: 获取供应商信息
|
|
* @param [site, supplierId]
|
|
* @return: com.gaotao.modules.base.entity.SupplierData
|
|
* @date: 2023/2/7 17:28
|
|
*/
|
|
SupplierData getSupplier(String site, String supplierId);
|
|
}
|