Pu Zhibing
2024-11-04 b93ccfcab22e5cf28e9145fc75f8756f2c343c26
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ruoyi.account.api.dto;
 
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
import java.io.Serializable;
 
@Data
@ApiModel(value = "发送短信dto类")
public class SendMessageDTO implements Serializable {
 
    private String phone;
    private String code;
    private String site;
    private String chargeGun;
    private Integer type;// 1 codeMsg  2 applyCodeMsg 3 faultMsg
 
}