liusheng
2024-04-30 01a79d5b431b71cc79cf5f6cc92cd4f3432781dd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
}