xiaoyong931011
2021-06-24 ccb35b497df342c6de15f3a6be4c065b0ca7f1f1
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
package com.xzx.gc.common.utils.sms;
 
import lombok.Data;
 
/**
 * @Description: 模板短信发送信息
 * @author: wei
 * @date: 2019-04-16 22:04
 */
@Data
public class SendSmsRequestInfo {
 
    /***
     * 用户名
     */
    private String username;
 
    /***
     * 密钥
     */
    private String password;
 
    private String mobile;
    private String content;
    private String tKey;
    private String time;
 
}