liusheng
2024-06-27 afb277a81e060c6275f11e9f9f102b5dcfd80a72
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.smartor.domain;
 
import lombok.Data;
 
@Data
public class SendMagParam {
    //发送类型
    private String type;
 
    //电话号码
    private String phone;
 
    //发送内容
    private String content;
 
    //模板code 例如 :  SMS_461860582
    private String tmpCode;
 
    private String url;
}