CustomerServiceMapper.java 947 B

123456789101112131415161718192021222324252627282930313233343536
  1. package com.izouma.awesomeadmin.dao;
  2. import java.util.*;
  3. import com.izouma.awesomeadmin.datasource.DataSource;
  4. import org.springframework.stereotype.Repository;
  5. import com.izouma.awesomeadmin.model.CustomerService;
  6. /**
  7. * Dao接口
  8. */
  9. @Repository("com.zoumaframe.dao.CustomerServiceMapper")
  10. public interface CustomerServiceMapper {
  11. int deleteByPrimaryKey(Integer id);
  12. int insertSelective(CustomerService record);
  13. CustomerService selectByPrimaryKey(Integer id);
  14. int updateByPrimaryKeySelective(CustomerService record);
  15. List<CustomerService> queryAllCustomerService(CustomerService record);
  16. List<CustomerService> queryCustomerServiceByPage(Map<String, Object> parameter);
  17. int delete(CustomerService record);
  18. CustomerService queryCustomerService(CustomerService record);
  19. List<CustomerService> query(CustomerService record);
  20. List<CustomerService> getRecentlyLoginList(CustomerService record);
  21. }