FootprintService.java 535 B

123456789101112131415161718192021222324252627282930
  1. package com.kmall.admin.service;
  2. import com.kmall.admin.entity.FootprintEntity;
  3. import java.util.List;
  4. import java.util.Map;
  5. /**
  6. *
  7. *
  8. * @author Scott
  9. * @email
  10. * @date 2017-08-13 10:41:08
  11. */
  12. public interface FootprintService {
  13. FootprintEntity queryObject(Integer id);
  14. List<FootprintEntity> queryList(Map<String, Object> map);
  15. int queryTotal(Map<String, Object> map);
  16. void save(FootprintEntity footprint);
  17. void update(FootprintEntity footprint);
  18. void delete(Integer id);
  19. void deleteBatch(Integer[] ids);
  20. }