
5 changed files with 51 additions and 0 deletions
@ -0,0 +1,17 @@ |
|||
package com.yxt.messagecenter.api.message; |
|||
|
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @author Fan |
|||
* @description |
|||
* @date 2024/1/15 15:47 |
|||
*/ |
|||
@Data |
|||
public class PushSmsDto { |
|||
@ApiModelProperty("手机号") |
|||
private String mobile; |
|||
@ApiModelProperty("短信内容") |
|||
private String msg; |
|||
} |
Loading…
Reference in new issue