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;
|
}
|