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.
|
- class GlobalConfig {
- /// ====================== 后端json返回的key ====================== ///
- static final String HTTP_RESPONSE_KEY_CODE = 'code';
- static final String HTTP_RESPONSE_KEY_MSG = 'msg';
- static final String HTTP_RESPONSE_KEY_DATA = 'data';
- /// 成功返回的CODE值
- static final int RESPONSE_SUCCESS_CODE = 200;
- }
|