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
| package com.hx.phiappt.dto;
|
| import lombok.Data;
|
| /**
| * 发送结果实体
| */
| @Data
| public class SendResultDto {
| /** 消息标识 */
| private String id;
| /** 发送结果 0否1是 */
| private Integer sendStatus;
| /** 错误信息*/
| private String errMsg;
|
| /**发送返回发送状态-成功失败状态*/
| public static final int STATUS_FAIL = 0;
| /**发送返回发送状态-成功发送状态*/
| public static final int STATUS_REQUES_SUCCESS = 1;
|
| /**
| *发送状态校验
| * @return
| */
| public boolean checkStatus(){
| if (sendStatus != null && sendStatus == STATUS_REQUES_SUCCESS){
| return true;
| }else{
| return false;
| }
| }
|
| }
|
|