package com.taoke.autopay.utils;
|
|
/**
|
* @author hxh
|
* @title: Constant
|
* @description: 常量
|
* @date 2024/6/28 17:42
|
*/
|
public class Constant {
|
// 需要授权的代码
|
public final static int RESULT_CODE_NEED_LOGIN = 1001;
|
|
public final static String SESSION_KEY_USER ="session_user";
|
|
public final static String SESSION_KEY_TEMP_ALIPAY_KEY ="session_temp_alipay_key";
|
|
public final static int ORDER_TYPE_UNKNOWN=0;
|
|
public final static int ORDER_TYPE_DY=1;
|
|
public final static int ORDER_TYPE_KS=2;
|
|
public final static String ORDER_CHANNEL_CYX = "huohuo";
|
|
public final static String ORDER_CHANNEL_BPS = "bps";
|
|
|
// 根据订单号支付
|
public final static int PAY_TYPE_WITH_ORDER_NO = 1;
|
|
// 根据金额支付
|
public final static int PAY_TYPE_WITH_MONEY = 2;
|
|
|
|
}
|