首页>代码>spring boot+mybatis+mysql项目搭建入门实例>/springbootdemo/src/main/java/cn/wmyskxz/springboot/pojo/Student.java
package cn.wmyskxz.springboot.pojo; import java.util.Date; /** * Created by Administrator on 2018/7/6. */ public class Student { private Integer id; private Integer student_id; private String name; private Integer age; private String sex; private Date birthday; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Integer getStudent_id() { return student_id; } public void setStudent_id(Integer student_id) { this.student_id = student_id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getAge() { return age; } public void setAge(Integer age) { this.age = age; } public String getSex() { return sex; } public void setSex(String sex) { this.sex = sex; } public Date getBirthday() { return birthday; } public void setBirthday(Date birthday) { this.birthday = birthday; } }