Helius
2020-06-03 8c2e14a150ad27ffa20a98d857ae557b345883f9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.xcong.excoin.modules.test.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author wzy
 * @date 2020-05-08 10:09
 **/
@Data
@ApiModel(value = "12345", description = "2222222")
public class TestVo {
 
    @ApiModelProperty(value = "名字")
    private String name;
 
    @ApiModelProperty(value = "密码")
    private String pwd;
}