hch
2023-05-16 119b01e809decfb21ab3fb734ee8ff171f1abeba
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();
 
}