1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| 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_DY=1;
|
| public final static int ORDER_TYPE_KS=2;
|
| }
|
|