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
29
30
31
32
33
34
35
36
| package org.dromara.resource.api.domain;
|
| import lombok.Data;
|
| import java.io.Serial;
| import java.io.Serializable;
|
| /**
| * 文件信息
| *
| * @author ruoyi
| */
| @Data
| public class RemoteSms implements Serializable {
|
| @Serial
| private static final long serialVersionUID = 1L;
|
| /**
| * 是否成功
| */
| private Boolean isSuccess;
|
| /**
| * 响应消息
| */
| private String message;
|
| /**
| * 实际响应体
| * <p>
| * 可自行转换为 SDK 对应的 SendSmsResponse
| */
| private String response;
|
| }
|
|