xiaoyong931011
2021-06-22 38609ee05255ce5c36f308fe8d595555a86f9ba3
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;
 
}