mirror of
https://github.com/Geniusay/ChopperBot.git
synced 2026-05-24 13:19:29 +08:00
v1.0.3一些bug修改和一些模块重构优化
This commit is contained in:
30
FileModule/src/test/java/org/example/pojo/Student.java
Normal file
30
FileModule/src/test/java/org/example/pojo/Student.java
Normal 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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user