package com.secondworld.sdk.command;
|
|
import com.secondworld.sdk.MySdkMgr;
|
import com.secondworld.sdk.utils.CodeU2A;
|
|
import org.json.JSONObject;
|
|
public class CmdPlatformPay implements ICommand {
|
@Override
|
public int getCode() {
|
return CodeU2A.PlatformPay;
|
}
|
|
@Override
|
public void process(JSONObject json) throws Exception {
|
|
String attach = "1_" + json.getString("orderId") + "_" + json.getString("sid") + "_" + json.getString("cpInfo");
|
|
|
}
|
}
|