hch
2025-03-06 e4aef0f747ee60bdeb83e26f041c25d11e997a19
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.secondworld.sdk.command;
 
import com.secondworld.sdk.PlatformDiff;
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 {
        double money = (int) json.getDouble("money");
        PlatformDiff.I.PayEvent("title" + money, "goodsID"+money, money);
    }
}