1821349743@qq.com
2023-02-20 fca33f5fba0959d665d749cc78730c1efd1159e8
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 com.product.text.message.entity;
/**
 *  云MAS HTTP协议响应实体
* Copyright  PRODUCT-BASE
* @Title: PRODUCT-BASE-
* @Project: SendReq
* @Date: 2021年6月25日 下午5:37:14
* @Author: 杜洪波
* @Description:
 */
public class SendRes {
    private String rspcod;    //响应状态码
    private String msgGroup;    //消息批次号,由云MAS平台生成,用于验证短信提交报告和状态报告的一致性(取值msgGroup)注:如果数据验证不通过msgGroup为空
    private boolean success;    //数据校验结果
 
    //get() set()方法
    public String getRspcod() {
        return rspcod;
    }
    public void setRspcod(String rspcod) {
        this.rspcod = rspcod;
    }
    public String getMsgGroup() {
        return msgGroup;
    }
    public void setMsgGroup(String msgGroup) {
        this.msgGroup = msgGroup;
    }
    public boolean isSuccess() {
        return success;
    }
    public void setSuccess(boolean success) {
        this.success = success;
    }
    
}