You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
806 B
Java
30 lines
806 B
Java
2 years ago
|
package com.glxp.api.service.purchase;
|
||
|
|
||
|
|
||
|
|
||
|
import com.glxp.api.entity.purchase.SupCompanyEntity;
|
||
|
import com.glxp.api.req.purchase.FilterSupCompanyRequest;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
public interface SupCompanyService {
|
||
|
|
||
|
SupCompanyEntity findCompanyByUnitFk(String unitFk);
|
||
|
|
||
|
List<SupCompanyEntity> filterCompany(FilterSupCompanyRequest companyRequest);
|
||
|
|
||
|
SupCompanyEntity findCompany(String CustomerId);
|
||
|
|
||
|
List<SupCompanyEntity> getSubCompany(FilterSupCompanyRequest commitRequest);
|
||
|
|
||
|
List<SupCompanyEntity> getSubCompany2(FilterSupCompanyRequest commitRequest);
|
||
|
|
||
|
SupCompanyEntity findCompanyByName(String companyName);
|
||
|
|
||
|
boolean modifyCompany(SupCompanyEntity companyEntity);
|
||
|
|
||
|
boolean insertCompany(SupCompanyEntity companyEntity);
|
||
|
|
||
|
boolean deleteCompany(String customerId);
|
||
|
}
|