You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
543 B
24 lines
543 B
package com.qs.cost.common.consts;
|
|
|
|
/**
|
|
* @author YenHex
|
|
* @since 2022/2/28
|
|
*/
|
|
public class ApiStatusConst {
|
|
|
|
/** 无需回调 */
|
|
public static final int ApiRequest_Status_0 = 0;
|
|
|
|
/** 等待回调 */
|
|
public static final int ApiRequest_Status_1 = 1;
|
|
|
|
/** 请求U8失败 */
|
|
public static final int ApiRequest_Status_2 = 2;
|
|
|
|
/** 请求U8成功,但回调客户端失败 */
|
|
public static final int ApiRequest_Status_3 = 3;
|
|
|
|
/** 回调客户端成功 */
|
|
public static final int ApiRequest_Status_4 = 4;
|
|
|
|
}
|
|
|