Commit 8633cd44 by 吴博

feat: [1006616] vr纸书购买

parent 1585955e
...@@ -214,4 +214,9 @@ public class SMSTemplateConstant { ...@@ -214,4 +214,9 @@ public class SMSTemplateConstant {
* 服务${serveName}剩余使用数量已不足20%, 请及时充值。 * 服务${serveName}剩余使用数量已不足20%, 请及时充值。
*/ */
public static final String ALERT_MESSAGE_COUNT = "SMS_21092600006"; public static final String ALERT_MESSAGE_COUNT = "SMS_21092600006";
/**
* 您收到来自《元宇宙书店》的专属礼品,请点击领取:https://s.5rs.me/{url}
*/
public static final String VR_JUMP = "SMS_22022100015";
} }
...@@ -39,6 +39,18 @@ public class SendMessageDto implements Serializable{ ...@@ -39,6 +39,18 @@ public class SendMessageDto implements Serializable{
* 签名 * 签名
*/ */
private String signature; private String signature;
/**
* 是否营销
*/
private Integer isSale;
public Integer getIsSale() {
return isSale;
}
public void setIsSale(Integer isSale) {
this.isSale = isSale;
}
public String getSignature() { public String getSignature() {
return signature; return signature;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment