| 12345678910111213141516171819202122232425262728293031 |
- package com.happy.service;
- import java.util.HashMap;
- /**
- * 微信菜单业务类
- * @author lujunjie
- * @date 2018/03/01
- */
- public interface WxMenuService {
- /**
- * 生成支付二维码URL
- * @param 标价金额(分单位)
- * @param outTradeNo 商户订单号
- * @param signType 签名类型
- * @throws Exception
- */
- public String wxUrl(String outTradeNo, String signType, String collect_code, String time) throws Exception;
- public String test(String card_number) throws Exception;
- public String test2(String collect_code) throws Exception;
- public String test3(String card_number) throws Exception;
- public String wxUrl2(String outTradeNo, String signType, String collect_code, String time) throws Exception;
- }
|