|
|
|
@ -286,12 +286,45 @@ public class SaasCompanyController {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 黄海测试使用POST方式提交
|
|
|
|
|
*
|
|
|
|
|
* @param jo
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@RequestMapping(value = "/HuangHaiTestPost")
|
|
|
|
|
public CommonResponse HuangHaiTestPost(@RequestBody JSONObject jo){
|
|
|
|
|
public CommonResponse HuangHaiTestPost(@RequestBody JSONObject jo) {
|
|
|
|
|
System.out.println(jo);
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 小程序端
|
|
|
|
|
* Header中添加:
|
|
|
|
|
* Authorization:Bearer eyJhbGciOiJIUzUxMiJ9.eyJkYXRlIjoiRnJpIEF1ZyAwMiAxNTozODo0OSBDU1QgMjAyNCIsInBob25lIjoiMTM3NTY1MTE5OTAiLCJ0eXBlIjoiV1giLCJ1c2VySWQiOiI5NDMxMiJ9.ijub0sefLG5ul0ak3ZhyYk7byNxzdiN1ASQ_8yL2scA3TGerc6zVW98X0UrpGDSvhaPcCrsIdxEOvKezUarNmg
|
|
|
|
|
*
|
|
|
|
|
* 小程序端传入:
|
|
|
|
|
* header:{ *
|
|
|
|
|
* 'Content-Type':'application/x-www-form-urlencoded'
|
|
|
|
|
* }
|
|
|
|
|
* @param companyId
|
|
|
|
|
* @param isPersonalAccpunt
|
|
|
|
|
* @param isCard
|
|
|
|
|
* @param names
|
|
|
|
|
* @param enableOnlineRecharge
|
|
|
|
|
* @param phones
|
|
|
|
|
* @param companyMinChargeBalance
|
|
|
|
|
* @param enableOnlineRefund
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@RequestMapping(value = "/HuangHaiTestPost2")
|
|
|
|
|
public CommonResponse HuangHaiTestPost2(Integer companyId,
|
|
|
|
|
Integer isPersonalAccpunt,
|
|
|
|
|
Integer isCard,
|
|
|
|
|
String names,
|
|
|
|
|
Integer enableOnlineRecharge,
|
|
|
|
|
String phones,
|
|
|
|
|
String companyMinChargeBalance,
|
|
|
|
|
Integer enableOnlineRefund) {
|
|
|
|
|
System.out.println("ok");
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|