MyBatis_CURD】的更多相关文章

一.项目结构 二.代码实现 package com.jmu.bean; public class Student { private Integer id; private String name; private double score; private int age; public Student() { super(); } public Student(String name, int age ,double score) { super(); this.name = name; t…