hch
2023-08-24 e428594d4cc0284429121e882d70803a2fdb08cc
1
2
3
4
5
6
7
8
9
10
11
12
package com.secondworld.sdk;
 
public abstract class PlatformDiff {
 
    public static PlatformDiff I;
 
    //平台名称
    public abstract String platformName();
    public abstract String platformProductCode();
    public abstract String platformProductKey();
 
}