后台服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 line
931 B

  1. package com.iformall.service;
  2. import com.github.pagehelper.PageInfo;
  3. import com.iformall.domain.po.PosPayOrder;
  4. import java.util.List;
  5. public interface PosPayOrderService {
  6. /**
  7. * 根据实体查询分页列表
  8. *
  9. * @param record
  10. * @param pageIndex
  11. * @param pageSize
  12. * @return
  13. */
  14. PageInfo<PosPayOrder> listAsPage(PosPayOrder record, Integer pageIndex, Integer pageSize);
  15. /**
  16. * 根据实体查询列表
  17. *
  18. * @param record
  19. * @return
  20. */
  21. List<PosPayOrder> getList(PosPayOrder record);
  22. /**
  23. * 根据Id获得实体
  24. *
  25. * @param id
  26. * @return
  27. */
  28. PosPayOrder getById(Long id,String tenantId);
  29. /**
  30. * 保存或更新实体
  31. *
  32. * @param record
  33. */
  34. void saveOrUpdate(PosPayOrder record);
  35. /**
  36. * 根据Id删除实体
  37. *
  38. * @param id
  39. */
  40. //void deleteById(Long id);
  41. }