v1.0.3一些bug修改和一些模块重构优化

This commit is contained in:
userA
2023-04-26 00:52:14 +08:00
parent eba9c32c8f
commit 1233ca8a00
22 changed files with 389 additions and 106 deletions

View File

@@ -0,0 +1,30 @@
package org.example.pojo;
import lombok.Data;
import java.util.List;
import java.util.Map;
/**
* @author Genius
* @date 2023/04/20 13:46
**/
@Data
public class Student{
private String name;
private int age;
private String school;
private String major;
private List<String> hobby;
private Map<String, String> info;
public Student(String name, int age, String school, String major, List<String> hobby, Map<String, String> info) {
this.name = name;
this.age = age;
this.school = school;
this.major = major;
this.hobby = hobby;
this.info = info;
}
}