Pu Zhibing
2025-07-17 1879402a33f2bdaf6ac8f13a3ef67ed5bc2bc4fd
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
 
}