2021年10月29日
摘要: 一、目录结构 二、代码 1、AccountDao 1 package cn.bijian.dao; 2 3 4 import cn.bijian.model.Account; 5 import org.apache.ibatis.annotations.One; 6 import org.apach 阅读全文
posted @ 2021-10-29 21:16 晨曦生辉耀匕尖 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 一、目录结构 二、代码 1、AccountDao 1 package cn.bijian.dao; 2 3 4 import cn.bijian.model.Account; 5 6 import java.util.List; 7 8 public interface AccountDao { 9 阅读全文
posted @ 2021-10-29 15:28 晨曦生辉耀匕尖 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 一、目录结构 二、代码 1、AccountDao 1 package cn.bijian.dao; 2 3 import cn.bijian.model.Account; 4 5 import java.util.List; 6 7 public interface AccountDao { 8 / 阅读全文
posted @ 2021-10-29 11:14 晨曦生辉耀匕尖 阅读(32) 评论(0) 推荐(0) 编辑
  2021年10月28日
摘要: 一、目录结构 二、代码 1、UserDao 1 package cn.bijian.dao; 2 3 import cn.bijian.model.User; 4 import cn.bijian.model.User2; 5 import cn.bijian.pojo.QueryVo; 6 7 i 阅读全文
posted @ 2021-10-28 15:14 晨曦生辉耀匕尖 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 一、目录结构 二、代码 1、UserDao 1 package cn.bijian.dao; 2 3 import cn.bijian.model.User; 4 import org.apache.ibatis.annotations.Select; 5 6 import java.util.Li 阅读全文
posted @ 2021-10-28 11:18 晨曦生辉耀匕尖 阅读(30) 评论(0) 推荐(0) 编辑
  2021年10月27日
摘要: 一、目录结构 二、代码 1、dao/UserDao 1 package cn.bijian.dao; 2 3 import cn.bijian.model.User; 4 import org.apache.ibatis.annotations.Select; 5 6 import java.uti 阅读全文
posted @ 2021-10-27 19:47 晨曦生辉耀匕尖 阅读(29) 评论(0) 推荐(0) 编辑
  2020年11月13日
摘要: 一、目录结构 二、代码 1、domain/Emp package JDBC.domain; import java.util.Date; public class Emp { //private int id; private Integer id; private String ename; // 阅读全文
posted @ 2020-11-13 20:08 晨曦生辉耀匕尖 阅读(6) 评论(0) 推荐(0) 编辑
  2020年4月18日
摘要: ###################30sample函数#################### #sample(x,size,replace=F) #x可以是任何对象, #size规定了从对象中抽出多少个数,size应该小于x的规模,否则会报错 #replace默认是F,表示每次抽取后的数就不能 阅读全文
posted @ 2020-04-18 10:26 晨曦生辉耀匕尖 阅读(383) 评论(0) 推荐(0) 编辑
摘要: ###################21-22包、帮助#################### #安装:install.packages('包名') #加载:library(包名) #卸载:remove.packages('包名') help.start() help(sum)#函数 ?sum l 阅读全文
posted @ 2020-04-18 10:24 晨曦生辉耀匕尖 阅读(337) 评论(0) 推荐(0) 编辑
摘要: ###################11R的表(求相应组合的频率)###################### age <- c(12, 35, 25, 12, 25) gender <- c("f", "m", "m", "m", "f") table(age,gender) dat<-data 阅读全文
posted @ 2020-04-18 10:21 晨曦生辉耀匕尖 阅读(361) 评论(0) 推荐(0) 编辑