hch
2024-09-10 b1dd116a4ba410feec98bb2e2a7f57d5e48c0ff8
1
2
3
4
5
6
7
8
package com.secondworld.sdk.utils;
 
//回调的相关状态
public interface CallBackState {
    int Cancel = 0;
    int Success = 1;
    int Error = 2;
}