You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					35 lines
				
				964 B
			
		
		
			
		
	
	
					35 lines
				
				964 B
			| 
											3 years ago
										 | package com.ynxbd.common.bean.sms;
 | ||
|  | 
 | ||
|  | import com.ynxbd.common.helper.common.JsonHelper;
 | ||
|  | import lombok.Getter;
 | ||
|  | import lombok.Setter;
 | ||
|  | import lombok.ToString;
 | ||
|  | 
 | ||
|  | import java.io.Serializable;
 | ||
|  | import java.util.Date;
 | ||
|  | 
 | ||
|  | // 德宏州中医医院:SMS_176534008
 | ||
|  | // 模版内容:
 | ||
|  | // 您已成功预约${time}的${dept}门诊的${doctor}医生,就诊序号为${seq}号,地址:${address},
 | ||
|  | // 请于就诊当日按预约就诊时间提前半小时到诊区候诊。如有疑问请致电0692-2991794咨询。祝您健康!
 | ||
|  | 
 | ||
|  | @Setter
 | ||
|  | @Getter
 | ||
|  | @ToString
 | ||
|  | public class SmsTemplate implements Serializable {
 | ||
|  |     private static final long serialVersionUID = -5444449021496420670L;
 | ||
|  |     // 手机号码
 | ||
|  |     private String tel;
 | ||
|  |     // 验证码
 | ||
|  |     private String code;
 | ||
|  |     // 失效倒计时
 | ||
|  |     private Long countDown;
 | ||
|  |     // temParam
 | ||
|  |     private String temParam;
 | ||
|  | 
 | ||
|  |     public SmsTemplate() {
 | ||
|  |         this.countDown = new Date().getTime();
 | ||
|  |     }
 | ||
|  | 
 | ||
|  | }
 |