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