增加根据名称获取供应商或者客户信息的接口

This commit is contained in:
jishenghua
2025-10-10 22:03:53 +08:00
parent b513d57283
commit 69d351e119
4 changed files with 30 additions and 0 deletions

View File

@@ -700,4 +700,8 @@ public class SupplierService {
public List<SupplierSimple> getAllCustomer() {
return supplierMapperEx.getAllCustomer();
}
public Supplier getInfoByName(String name, String type) {
return supplierMapperEx.getInfoByName(name, type);
}
}