58fb7a5f6c2acd73cb5edfc7a789599b640b4927.svn-base 610 B

123456789101112131415161718192021222324252627282930
  1. package org.jeecg.common.constant;
  2. /**
  3. * VXESocket 常量
  4. */
  5. public class VXESocketConst {
  6. /**
  7. * 消息类型
  8. */
  9. public static final String TYPE = "type";
  10. /**
  11. * 消息数据
  12. */
  13. public static final String DATA = "data";
  14. /**
  15. * 消息类型:心跳检测
  16. */
  17. public static final String TYPE_HB = "heart_beat";
  18. /**
  19. * 消息类型:通用数据传递
  20. */
  21. public static final String TYPE_CSD = "common_send_date";
  22. /**
  23. * 消息类型:更新vxe table数据
  24. */
  25. public static final String TYPE_UVT = "update_vxe_table";
  26. }