WxMenuService.java 803 B

12345678910111213141516171819202122232425262728293031
  1. package com.happy.service;
  2. import java.util.HashMap;
  3. /**
  4. * 微信菜单业务类
  5. * @author lujunjie
  6. * @date 2018/03/01
  7. */
  8. public interface WxMenuService {
  9. /**
  10. * 生成支付二维码URL
  11. * @param 标价金额(分单位)
  12. * @param outTradeNo 商户订单号
  13. * @param signType 签名类型
  14. * @throws Exception
  15. */
  16. public String wxUrl(String outTradeNo, String signType, String collect_code, String time) throws Exception;
  17. public String test(String card_number) throws Exception;
  18. public String test2(String collect_code) throws Exception;
  19. public String test3(String card_number) throws Exception;
  20. public String wxUrl2(String outTradeNo, String signType, String collect_code, String time) throws Exception;
  21. }