Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 

62 строки
1.2 KiB

  1. package com.simple.service;
  2. import java.util.*;
  3. import com.github.pagehelper.PageInfo;
  4. import com.simple.common.ResultData;
  5. import com.simple.domain.po.WxAppinfo;
  6. import com.simple.domain.po.WxPayOrder;
  7. import com.simple.domain.po.WxProfitSharingOrder;
  8. public interface WxProfitSharingOrderService {
  9. /**
  10. * 根据实体查询分页列表
  11. *
  12. * @param record
  13. * @param offset
  14. * @param limit
  15. * @return
  16. */
  17. PageInfo<WxProfitSharingOrder> listAsPage(WxProfitSharingOrder record, Integer pageIndex, Integer pageSize);
  18. /**
  19. * 根据Id获得实体
  20. *
  21. * @param id
  22. * @return
  23. */
  24. WxProfitSharingOrder getById(Long id);
  25. /**
  26. * 保存或更新实体
  27. *
  28. * @param record
  29. */
  30. void saveOrUpdate(WxProfitSharingOrder record);
  31. /**
  32. * 根据Id删除实体
  33. *
  34. * @param id
  35. */
  36. void deleteById(Long id);
  37. /**
  38. * 临时测试
  39. */
  40. public void test();
  41. /**
  42. * 创建分账订单
  43. */
  44. public ResultData createSharingOrder(WxPayOrder wxPayOrder);
  45. /**
  46. * 查询分账订单
  47. */
  48. public ResultData querySharingOrder(WxPayOrder wxPayOrder);
  49. }