ApiConstants.java 453 B

12345678910111213141516171819202122
  1. package cn.com.ty.lift.common.Constants;
  2. /**
  3. * @author huangy
  4. * @date 2019-11-29
  5. * @description api常量
  6. */
  7. public class ApiConstants {
  8. /**
  9. * 处理结果 1:成功
  10. */
  11. public static final String RESULT_SUCCESS = "1";
  12. /**
  13. * 处理结果 0:失败
  14. */
  15. public static final String RESULT_ERROR = "0";
  16. /**
  17. * 没有数据 9:更新0件、没数据
  18. */
  19. public static final String RESULT_NO_DATA = "9";
  20. }