后台服务
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.

24 rivejä
451 B

  1. package com.iformall.common;
  2. public interface CommonConstants {
  3. /**
  4. * 状态(0:正常,1:锁定)
  5. */
  6. Integer STATUS_NORMAL = 0;
  7. Integer STATUS_ABNORMAL = 1;
  8. /**
  9. * 是否:0:否,1:是
  10. * 是否删除状态(0:未删除,1:已删除)
  11. */
  12. Integer FLAG_TRUE = 1;
  13. Integer FLAG_FALSE = 0;
  14. /**
  15. * 通用数字
  16. */
  17. int NUM_0 = 0;
  18. int NUM_1 = 1;
  19. int NUM_2 = 2;
  20. }