sinake
20 小时以前 371603a0eb9f3a279cf77073734e991b5851b792
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.smartor.domain;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "smsVO", description = "短信")
public class smsVO {
    @ApiModelProperty(value = "手机号")
    private String phone;
 
    @ApiModelProperty(value = "短信内容")
    private String content;
 
 
}