luodangjia
2024-11-05 11b6cfb2d3312b018b68eecadc798dfa3e2ec6db
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
 
}