Pu Zhibing
4 天以前 3244b550596e0330031b3f4547356927df83b0ad
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
 
}