xiangpei
2024-06-05 7457e3aa4f2e0f640a08b35f47de1eabd555d7bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ycl.jxkg.domain.vo;
 
import lombok.Data;
 
/**
 * @author:xp
 * @date:2024/6/4 11:29
 */
@Data
public class StudentVO {
 
    private Integer id;
 
    private String realName;
 
    private String phone;
 
}