1234567891011121314151617181920 |
- package J20250806.reflection;
- /**
- * @author WanJl
- * @version 1.0
- * @title Student
- * @description
- * @create 2025/8/6
- */
- public class Student extends Person{
- public Integer id;
- private String name;
- private Integer age;
- public Student(Integer id, String name, Integer age) {
- this.id = id;
- this.name = name;
- this.age = age;
- }
- }
|