package com.glxp.api.dao.system; import com.glxp.api.entity.system.CompanyEntity; import org.apache.ibatis.annotations.Mapper; @Mapper public interface CompanyDao { CompanyEntity findCompany(String CustomerId); boolean modifyCompany(CompanyEntity companyEntity); boolean insertCompany(CompanyEntity companyEntity); }