mirror of
https://github.com/dromara/RuoYi-Vue-Plus.git
synced 2025-09-24 07:19:46 +08:00
30 lines
368 B
Java
30 lines
368 B
Java
package com.ruoyi.sms.entity;
|
|
|
|
import lombok.Builder;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* 上传返回体
|
|
*
|
|
* @author Lion Li
|
|
*/
|
|
@Data
|
|
@Builder
|
|
public class SmsResult {
|
|
|
|
/**
|
|
* 是否成功
|
|
*/
|
|
private boolean isSuccess;
|
|
|
|
/**
|
|
* 响应消息
|
|
*/
|
|
private String message;
|
|
|
|
/**
|
|
* 实际响应体
|
|
*/
|
|
private Object response;
|
|
}
|