package com.izouma.awesomeadmin.dao; import java.util.*; import com.izouma.awesomeadmin.datasource.DataSource; import org.springframework.stereotype.Repository; import com.izouma.awesomeadmin.model.CustomerService; /** * Dao接口 */ @Repository("com.zoumaframe.dao.CustomerServiceMapper") public interface CustomerServiceMapper{ int deleteByPrimaryKey(Integer id); int insertSelective(CustomerService record); CustomerService selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(CustomerService record); List queryAllCustomerService(CustomerService record); List queryCustomerServiceByPage(Map parameter); int delete(String id); CustomerService queryCustomerService(CustomerService record); List query(CustomerService record); List getRecentlyLoginList(CustomerService record); }