linzhijie
2021-03-11 3cfd98ba9e99e68b9ff43e35a8befd90a48e1ab7
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
package com.ots.project.tool.sms;
import lombok.Getter;
import lombok.Setter;
import java.util.Date;
 
@Getter
@Setter
public class SmsReq {
    
    private String userid;
    
    private String timestamp;
    
    private String sign;
    
    private String mobile;
    
    private String content;
    
    private Date sendTime;
    
    private String action;
    
    private String extno;
    
    private String rt;
}