| 12345678910111213141516171819202122232425262728293031323334353637 |
- package com.happy.Unitil_nsh;
- /**
- * Interface TestParams
- * Description 说明:
- * Create 2017-04-19 14:26:00
- *
- * @author Benny.YEE
- */
- public interface TestParams {
- // 测试环境
- // String OPEN_ID = "5fb33938bb819024b8ed719edf221840";
- String OPEN_ID = "74969401869b175660817b4369e5a911";
- String OPEN_KEY = "ba5c30ce48fbfb4464a5a855a960c802";
- // 测试环境地址
- String OPEN_URL = "https://api.jxnxs.com/mct1/";
- // 接口名称
- String PAYLIST = "paylist";
- String ORDERLIST = "order";
- String ORDERVIEW = "order/view";
- String PAYORDER = "payorder";
- String QUERYPAYSTATUS = "paystatus";
- String PAYCANCEL = "paycancel";
- String PAYREFUND = "payrefund";
- String BILL = "bill";
- String PREORDER = "preorder";
- // {"open_id":"5494ec3310685daa218382619dd20e27","open_key":"611764d05a545bb7bb08cbd457f7dac1"}
- // https://q.jxnxs.com
- // https://q.jxnxs.com/newpay?O=5494ec3310685daa218382619dd20e27&out_no=798465321465&amount=1
- }
- //~ Formatted by Jindent --- http://www.jindent.com
|