摘要: MyBatis对象分析 测试代码示例 package com.example.test; import com.example.pojo.Student; import org.apache.ibatis.io.Resources; import org.apache.ibatis.session. 阅读全文
posted @ 2022-08-09 23:20 nefu-xun 阅读(193) 评论(0) 推荐(0)
摘要: 创建实体类Student,用来封装数据 对照数据表构建实体类 package com.example.pojo; public class Student { private Integer id; private String name; private String email; private 阅读全文
posted @ 2022-08-09 14:37 nefu-xun 阅读(178) 评论(0) 推荐(0)