CustomerService.java 649 B

1234567891011121314151617181920212223242526272829
  1. package jnpf.service;
  2. import jnpf.base.Pagination;
  3. import jnpf.base.service.SuperService;
  4. import jnpf.entity.CustomerEntity;
  5. import java.util.List;
  6. /**
  7. *
  8. * 客户信息
  9. * 版本: V3.1.0
  10. * 版权: 引迈信息技术有限公司(https://www.jnpfsoft.com)
  11. * 作者: JNPF开发平台组
  12. * 日期: 2021-07-10 14:09:05
  13. */
  14. public interface CustomerService extends SuperService<CustomerEntity> {
  15. List<CustomerEntity> getList(Pagination pagination);
  16. CustomerEntity getInfo(String id);
  17. void delete(CustomerEntity entity);
  18. void create(CustomerEntity entity);
  19. boolean update( String id, CustomerEntity entity);
  20. }