liusheng
7 天以前 c7c90b74d723ab08069d40b6b1fadddb2deeeb7e
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;
 
 
}