package com.xxx.pojo;/**
* @author shkstart
* @create 2021-06-11 17:45
*/
import java.util.*;
/**
*@program: Spring_study
*@description:
*@author: XieXianXin
*@create: 2021-06-11 17:45
*/
public class Student {
private String name;
private Book book;
private String[] course;
private List
private Map
private Set
private String marriage;
private Properties info;
public Student() {
}
public Student(String name, Book book, String[] course, List
this.name = name;
this.book = book;
this.course = course;
this.hobbies = hobbies;
this.card = card;
this.fruit = fruit;
this.marriage = marriage;
this.info = info;
}
@Override
public String toString() {
return "Student{" +
"name='" + name + '\'' +
", book=" + book +
", course=" + 外汇跟单gendan5.comArrays.toString(course) +
", hobbies=" + hobbies +
", card=" + card +
", fruit=" + fruit +
", marriage='" + marriage + '\'' +
", info=" + info +
'}';
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Book getBook() {
return book;
}
public void setBook(Book book) {
this.book = book;
}
public String[] getCourse() {
return course;
}
public void setCourse(String[] course) {
this.course = course;
}
public List
return hobbies;
}
public void setHobbies(List
this.hobbies = hobbies;
}
public Map
return card;
}
public void setCard(Map
this.card = card;
}
public Set
return fruit;
}
public void setFruit(Set
this.fruit = fruit;
}
public String getMarriage() {
return marriage;
}
public void setMarriage(String marriage) {
this.marriage = marriage;
}
public Properties getInfo() {
return info;
}
public void setInfo(Properties info) {
this.info = info;
}
}