Constants.java 759 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * *************************************************
  3. * Copyright (c) 2018 QMTH. All Rights Reserved.
  4. * Created by Deason on 2018-07-16 15:00:21.
  5. * *************************************************
  6. */
  7. package cn.com.qmth.examcloud.app.model;
  8. public interface Constants {
  9. String CHARSET_JSON_UTF8 = "application/json; charset=utf-8";
  10. String PARAM_KEY = "key";
  11. String PARAM_TOKEN = "token";
  12. String TYPE_ZIP = "zip";
  13. String TYPE_PDF = "pdf";
  14. String DEFAULT_ACCOUNT_TYPE = "COMMON_LOGIN_NAME";
  15. /* 常用状态码 */
  16. String CODE_0 = "0";//错误
  17. String CODE_200 = "200";//成功
  18. String CODE_500 = "500";//失败
  19. String CODE_403 = "403";//认证失败
  20. String CODE_404 = "404";//请求地址不存在
  21. }