zhongrj
2023-06-19 07d02c7766ee86922c190c8ea170b352df485050
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
package cn.gistack.alerts.sms.constant;
 
/**
 * 小程序链接地址
 * @author zhongrj
 * @date 2023-06-14
 */
public class MinConstant {
 
    /**
     * 水库水位情况信息填报 url
     */
    public static final String fillWaterInfoUrl = "https://sk.hubeishuiyi.cn/znwh/index.html#/";
 
    /**
     * 前缀(未接电话发送短息记录),用于判断是否已发过短息
     */
    public static final String is_send_prefix = "blade:alerts:is:send:";
 
    /**
     * 前缀(未接电话发送短息记录通知),用于填写水库信息
     */
    public static final String fill_info_prefix = "blade:alerts:fill:info:";
 
    /**
     * 已发短息人员redis 过期时间(秒),暂定3小时
     */
    public static final Long is_send_time = 3 * 60 * 60L;
}