main
黄海 12 months ago
parent 8f8e8d9c93
commit 6e9a1d86c6

@ -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;
}
}

Loading…
Cancel
Save