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
795 B
Java
30 lines
795 B
Java
2 years ago
|
package com.glxp.api.dao.purchase;
|
||
|
|
||
|
|
||
|
import com.glxp.api.entity.purchase.SupCompanyEntity;
|
||
|
import com.glxp.api.req.purchase.FilterSupCompanyRequest;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
@Mapper
|
||
|
public interface SupCompanyDao {
|
||
|
|
||
|
SupCompanyEntity findCompany(String CustomerId);
|
||
|
|
||
|
SupCompanyEntity findCompanyByName(String companyName);
|
||
|
|
||
|
List<SupCompanyEntity> getSubCompany(FilterSupCompanyRequest companyRequest);
|
||
|
|
||
|
List<SupCompanyEntity> getSubCompany2(FilterSupCompanyRequest companyRequest);
|
||
|
|
||
|
List<SupCompanyEntity> filterCompany(FilterSupCompanyRequest companyRequest);
|
||
|
|
||
|
boolean modifyCompany(SupCompanyEntity companyEntity);
|
||
|
|
||
|
boolean insertCompany(SupCompanyEntity companyEntity);
|
||
|
|
||
|
boolean deleteCompany(String customerId);
|
||
|
|
||
|
}
|