短信发送VO

This commit is contained in:
阿沐 2024-06-25 17:17:47 +08:00
parent be0cd2d88d
commit 48fcaa02a8

View File

@ -0,0 +1,30 @@
package net.maku.system.vo;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.io.Serializable;
/**
* 短信发送
*
* @author 阿沐 babamu@126.com
*/
@Data
@Schema(description = "短信发送")
public class SysSmsSendVO implements Serializable {
private static final long serialVersionUID = 1L;
@Schema(description = "id")
private Long id;
@Schema(description = "手机号")
private String mobile;
@Schema(description = "参数Key")
private String paramKey;
@Schema(description = "参数Value")
private String paramValue;
}