zhongrj
2023-06-02 ebf10ccf6217dfeebad750b4f4bb9ef4d9af68b0
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 cn.gistack.common.constant;
 
/**
 * 短信常量
 * @author zhongrj
 * @date 2023-04-21
 */
public class SmsConstant {
 
    /**
     * post
     */
    public static final String HOST = "https://api.ums86.com";
 
    /**
     * 企业码
     */
    public static final String SpCode = "214596";
 
    /**
     * appKey
     */
    public static final String AppKey = "hbsl_zhsk";
 
    /**
     * appSecret
     */
    public static final String AppSecret = "ec4ad8f3a5627e93c49803c90a18eb53";
 
    /**
     * 发送固定短信url
     */
    public static final String sendUrl = "/api/sms/send";
 
    /**
     * 动态短信发送接口url
     */
    public static final String sendVarUrl = "/api/sms-var/send";
}