Student.java 206 B

12345678910111213
  1. package J20250805.demo03;
  2. /**
  3. * @author WanJl
  4. * @version 1.0
  5. * @title Student
  6. * @description
  7. * @create 2025/8/5
  8. */
  9. public class Student {
  10. public static String school;
  11. public Course course;
  12. }