基础库
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.
 
 
 
 
 

9 lines
346 B

  1. class GlobalConfig {
  2. /// ====================== 后端json返回的key ====================== ///
  3. static final String HTTP_RESPONSE_KEY_CODE = 'code';
  4. static final String HTTP_RESPONSE_KEY_MSG = 'msg';
  5. static final String HTTP_RESPONSE_KEY_DATA = 'data';
  6. /// 成功返回的CODE值
  7. static final int RESPONSE_SUCCESS_CODE = 200;
  8. }