1
2
3
4
5
6
7
8
9
10
11
12
13
14
| 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";
| }
|
|