417e1e2294d52532f7b33ef18c094a30a1792421.svn-base 807 B

1234567891011121314151617181920212223242526
  1. package org.jeecg.common.constant;
  2. /**
  3. * 系统通告 - 发布状态
  4. * @Author LeeShaoQing
  5. *
  6. */
  7. public interface CommonSendStatus {
  8. public static final String UNPUBLISHED_STATUS_0 = "0"; //未发布
  9. public static final String PUBLISHED_STATUS_1 = "1"; //已发布
  10. public static final String REVOKE_STATUS_2 = "2"; //撤销
  11. //app端推送会话标识后缀
  12. public static final String APP_SESSION_SUFFIX = "_app"; //app端推送会话标识后缀
  13. /**流程催办——系统通知消息模板*/
  14. public static final String TZMB_BPM_CUIBAN = "bpm_cuiban";
  15. /**标准模板—系统消息通知*/
  16. public static final String TZMB_SYS_TS_NOTE = "sys_ts_note";
  17. /**流程超时提醒——系统通知消息模板*/
  18. public static final String TZMB_BPM_CHAOSHI_TIP = "bpm_chaoshi_tip";
  19. }