| 1234567891011121314151617181920212223242526272829303132 |
- package com.template.model.vo;
- import lombok.Data;
- /**
- * @Author: binguo
- * @Date: 2023/12/4 星期一 15:57
- * @Description: com.template.model.vo
- * @Version: 1.0
- */
- @Data
- public class ParentOfStudentsVo {
- /**
- * 学生数据ID
- */
- private Integer id;
- /**
- * 学生名称
- */
- private String name;
- /**
- * 编号
- */
- private String cardNo;
- /**
- * 部门ID
- */
- private Integer departmentId;
- }
|