zj
2025-06-25 7f45e436fe6d33784356f660ac328f72c00733fb
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
package com.chuanglan.sms.response;
 
import java.util.List;
 
/**
 * 
 * @Description:状态报告响应实体类
 */
public class SmsReportResponse {
    /**
     * 请求状态
     */
    private String ret;
    /**
     * 请求错误描述
     */
    private String error;
    /**
     * 上行明细结果
     */
    private List<Result> result;
    
 
    
    public String getRet() {
        return ret;
    }
    
    public void setRet(String ret) {
        this.ret = ret;
    }
    
    public String getError() {
        return error;
    }
    
    public void setError(String error) {
        this.error = error;
    }
    
    public List<Result> getResult() {
        return result;
    }
    
    public void setResult(List<Result> result) {
        this.result = result;
    }
    static class Result{
        /**
         * 消息ID
         */
        private String msgId;
        /**
         * 状态更新时间
         */
        private String reportTime;
        /**
         * 接收短信的手机号码
         */
        private String mobile;
        /**
         * 状态(详细参考状态报告状态码)
         */
        private String status;
        /**
         * 状态说明
         */
        private String statusDesc;
        /**
         * 拉取个数
         */
        private String count;
        public String getMsgId() {
            return msgId;
        }
        public void setMsgId(String msgId) {
            this.msgId = msgId;
        }
        public String getReportTime() {
            return reportTime;
        }
        public void setReportTime(String reportTime) {
            this.reportTime = reportTime;
        }
        public String getMobile() {
            return mobile;
        }
        public void setMobile(String mobile) {
            this.mobile = mobile;
        }
        public String getStatus() {
            return status;
        }
        public void setStatus(String status) {
            this.status = status;
        }
        public String getStatusDesc() {
            return statusDesc;
        }
        public void setStatusDesc(String statusDesc) {
            this.statusDesc = statusDesc;
        }
        public String getCount() {
            return count;
        }
        public void setCount(String count) {
            this.count = count;
        }
        
        
        
}
 
    
}