1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  | package com.dayu.qiheonlinelibrary.net; 
 |    
 |  /** 
 |   * Copyright (C), 2023, 
 |   * Author: zuo 
 |   * Date: 2023-03-27 15:18 
 |   * Description: 
 |   */ 
 |  public class Constants { 
 |      public static final String BASE_URL = "http://120.46.45.35:20081/"; 
 |    
 |      /** 
 |       * 代表请求成功 
 |       */ 
 |      public static final int SUCCESS = 0; 
 |      //代表token过期的code值 
 |      public static final int TOKEN_INVALID = -10001; 
 |    
 |      /** 
 |       * 更新下载的文件名称 
 |       */ 
 |      public static final String DOWN_LOAD_FILE_NAME = "downName"; 
 |    
 |      public final static int RESULT_OK = 101; 
 |  } 
 |  
  |