Student.java 376 B

1234567891011121314151617181920
  1. package J20250806.reflection;
  2. /**
  3. * @author WanJl
  4. * @version 1.0
  5. * @title Student
  6. * @description
  7. * @create 2025/8/6
  8. */
  9. public class Student extends Person{
  10. public Integer id;
  11. private String name;
  12. private Integer age;
  13. public Student(Integer id, String name, Integer age) {
  14. this.id = id;
  15. this.name = name;
  16. this.age = age;
  17. }
  18. }