fix
Helius
2022-07-04 312dc55b139d16a73e58cd6899865e11e86c6fdc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.xcong.farmer.cms.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;
}