Administrator
6 days ago 6e3fcdbde6ad62832753ddc8d3e1429f29ea58ee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package cc.mrbird.febs.mall.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "ApiConnectListInPageVo", description = "参数")
public class ApiConnectListInPageVo {
 
    @ApiModelProperty(value = "ID", example = "丽丽")
    private Long id;
 
    @ApiModelProperty(value = "姓名", example = "丽丽")
    private String name;
 
    @ApiModelProperty(value = "电话", example = "丽丽")
    private String phone;
 
    @ApiModelProperty(value = "地址", example = "丽丽")
    private String address;
 
 
}