提交 | 用户 | age
|
406295
|
1 |
package com.hz.sms.dto; |
C |
2 |
|
|
3 |
import lombok.Data; |
|
4 |
|
|
5 |
/** |
|
6 |
* 发送结果实体 |
|
7 |
*/ |
|
8 |
@Data |
|
9 |
public class SendResultDto { |
|
10 |
/** 消息标识 */ |
|
11 |
private String id; |
|
12 |
/** 发送结果 0否1是 */ |
|
13 |
private Integer sendStatus; |
|
14 |
/** 错误信息*/ |
|
15 |
private String errMsg; |
|
16 |
|
|
17 |
/**发送返回发送状态-成功失败状态*/ |
|
18 |
public static final int STATUS_FAIL = 0; |
|
19 |
/**发送返回发送状态-成功发送状态*/ |
|
20 |
public static final int STATUS_REQUES_SUCCESS = 1; |
|
21 |
|
|
22 |
/** |
|
23 |
*发送状态校验 |
|
24 |
* @return |
|
25 |
*/ |
|
26 |
public boolean checkStatus(){ |
|
27 |
if (sendStatus != null && sendStatus == STATUS_REQUES_SUCCESS){ |
|
28 |
return true; |
|
29 |
}else{ |
|
30 |
return false; |
|
31 |
} |
|
32 |
} |
|
33 |
|
|
34 |
} |