CustomerServiceService.java 767 B

1234567891011121314151617181920212223242526272829
  1. package com.izouma.awesomeadmin.service;
  2. import java.util.*;
  3. import com.izouma.awesomeadmin.dto.Page;
  4. import com.izouma.awesomeadmin.model.CustomerService;
  5. /**
  6. * service接口类
  7. */
  8. public interface CustomerServiceService{
  9. List<CustomerService> getCustomerServiceList(CustomerService record);
  10. List<CustomerService> getCustomerServiceByPage(Page page, CustomerService record);
  11. CustomerService getCustomerServiceById(String id);
  12. CustomerService getCustomerService(CustomerService record);
  13. boolean createCustomerService(CustomerService record);
  14. boolean deleteCustomerService(CustomerService record);
  15. boolean updateCustomerService(CustomerService record);
  16. List<CustomerService> getRecentlyLoginList(CustomerService record);
  17. }