zhaowenxuan
2025-02-06 06c12d2b42c343798d9476be66031b48967df639
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.ltkj.hosp.vodomain;
 
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @Company: 西安路泰科技有限公司
 * @Author: zjh
 * @Date: 2023/9/4 17:45
 */
 
@Data
public class GetPeopleListVo {
 
    @ApiModelProperty(value = "体检号")
    private String tjNumber;
 
    @ApiModelProperty("姓名")
    private String name;
 
    @ApiModelProperty("性别")
    private Integer sex;
 
    @ApiModelProperty("年龄")
    private String age;
 
    @ApiModelProperty("单位名称")
    private String company;
 
    @ApiModelProperty("部门")
    private String department;
}