lyh
2025-06-25 e756af0f5bfd1addbd5d5c145441fb34aad91a28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package org.jeecg.common.constant;
 
/**
 *     系统通告 - 发布状态
 * @Author LeeShaoQing
 *
 */
public interface CommonSendStatus {
 
    /**
     * 未发布
     */
    public static final String UNPUBLISHED_STATUS_0 = "0";
 
    /**
     * 已发布
     */
    public static final String PUBLISHED_STATUS_1 = "1";
 
    /**
     * 撤销
     */
    public static final String REVOKE_STATUS_2 = "2";
 
    /**
     * app端推送会话标识后缀
     */
    public static final String  APP_SESSION_SUFFIX = "_app";
 
 
    /**流程催办——系统通知消息模板*/
    public static final String TZMB_BPM_CUIBAN = "bpm_cuiban";
    /**流程催办——邮件通知消息模板*/
    public static final String TZMB_BPM_CUIBAN_EMAIL = "bpm_cuiban_email";
    /**标准模板—系统消息通知*/
    public static final String TZMB_SYS_TS_NOTE = "sys_ts_note";
    /**流程超时提醒——系统通知消息模板*/
    public static final String TZMB_BPM_CHAOSHI_TIP = "bpm_chaoshi_tip";
}