All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dromara.sms4j.api.entity.SmsResponse Maven / Gradle / Ivy

package org.dromara.sms4j.api.entity;

import lombok.Data;

/**
 * 

类名: SmsResponse *

说明: 发送短信返回信息 * @author :Wind * 2023/3/25 0:25 **/ @Data public class SmsResponse { /** * 是否成功 * * @since 2.2.0 */ private boolean success; /** 状态码*/ private String code; /** 返回消息*/ private String message; /** 错误码,没有错误信息则为空*/ private String errorCode; /** 错误信息,如果没有错误则为空*/ private String errMessage; /** 回执ID*/ private String bizId; /** 返回体*/ private Object data; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy