liuxue
2021-05-08 75ecd33713d25ee82e1df74fa611bf3e6f0e8d2d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.secondworld.sdk.command;
 
import com.secondworld.sdk.utils.CodeU2A;
 
import org.json.JSONObject;
 
public class CmdPayFinished implements  ICommand{
    @Override
    public int getCode() {
        return CodeU2A.PayFinished;
    }
 
    @Override
    public void process(JSONObject json) throws Exception {
    }
}