first commit
This commit is contained in:
@ -0,0 +1,24 @@
|
||||
package com.fuint.common.dto;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 短信发送返回实体
|
||||
*
|
||||
* Created by FSQ
|
||||
* CopyRight https://www.fuint.cn
|
||||
*/
|
||||
@Data
|
||||
public class MessageResDto {
|
||||
|
||||
@ApiModelProperty("发送ID")
|
||||
private String[] sendIds;
|
||||
|
||||
@ApiModelProperty("发送结果")
|
||||
private Boolean result;
|
||||
|
||||
@ApiModelProperty("短信ID")
|
||||
private String[] smsId;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user