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.
|
|
|
package com.glxp.api.dao.system;
|
|
|
|
|
|
|
|
import com.glxp.api.dao.BaseMapperPlus;
|
|
|
|
import com.glxp.api.entity.auth.AliKeyEntity;
|
|
|
|
import com.glxp.api.entity.system.CompanyEntity;
|
|
|
|
import com.glxp.api.req.auth.FilterCompanyRequest;
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
@Mapper
|
|
|
|
public interface CompanyDao extends BaseMapperPlus<CompanyDao,CompanyEntity,CompanyEntity> {
|
|
|
|
|
|
|
|
CompanyEntity findCompany(@Param("customerId") String CustomerId);
|
|
|
|
|
|
|
|
CompanyEntity findCompanyByName(String companyName);
|
|
|
|
|
|
|
|
List<CompanyEntity> filterCompany(FilterCompanyRequest companyRequest);
|
|
|
|
|
|
|
|
boolean modifyCompany(CompanyEntity companyEntity);
|
|
|
|
|
|
|
|
boolean insertCompany(CompanyEntity companyEntity);
|
|
|
|
|
|
|
|
boolean deleteCompany(Long customerId);
|
|
|
|
|
|
|
|
}
|