xiaoyong931011
2021-05-14 d448a4f38f456e3af70bea0b29cde1670172aec3
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;
}