上一页 1 2 3 4 5 6 7 8 ··· 17 下一页
摘要: 重写 PageHelper 对应列表的查询count方法即可 如mapper中原列表查询方法 List<Type> findByPage(@Param("beginTime") String beginTime, @Param("endTime") String endTime); 将这个方法复制一 阅读全文
posted @ 2022-07-27 15:24 qwer78 阅读(1576) 评论(0) 推荐(0)
摘要: pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/ pip config set install.trusted-host mirrors.aliyun.com 阅读全文
posted @ 2022-07-11 15:11 qwer78 阅读(505) 评论(0) 推荐(0)
摘要: 定时任务为 5域模式 分钟、小时、日、月、周 crontab -l 查看当前的任务列表,其实就是crontab文件的内容 crontab -e 打开定时任务列表文件,进行编辑(可以使用# 进行添加注释) 下面是最常用的命令: [root@localhost ~]# crontab [选项] 选项: 阅读全文
posted @ 2022-07-08 16:56 qwer78 阅读(344) 评论(0) 推荐(0)
摘要: 优先级范围 -20 ~ 19,越小优先级越高 执行 top top一直刷新中 按 r ,输入你要改的进程pid(不要使用小键盘) 确定后 输入你想要设置的优先级数值 然后再确定(不要使用小键盘) 阅读全文
posted @ 2022-07-07 11:29 qwer78 阅读(379) 评论(0) 推荐(0)
摘要: @Select("SELECT IFNULL(SUM(${val}),0) cnt FROM table WHERE DATE_FORMAT(IF (m < 10,CONCAT(y,'-0',m,'-01'),CONCAT(y,'-',m,'-01')),'%Y-%m-%d') BETWEEN ${ 阅读全文
posted @ 2022-06-30 16:59 qwer78 阅读(741) 评论(0) 推荐(0)
摘要: 创建对应程序的exe或者快捷方式发送到桌面 win + r 输入 shell:Common Startup 打开启动文件夹 桌面快捷方式拖进文件夹 ok,这样就会开机自启了 阅读全文
posted @ 2022-06-14 14:54 qwer78 阅读(67) 评论(0) 推荐(0)
摘要: 查看防火墙某个端口是否开放 firewall-cmd --query-port=3306/tcp 开放防火墙端口3306 firewall-cmd --zone=public --add-port=3306/tcp --permanent 注意:开放端口后要重刷防火墙生效 firewall-cmd 阅读全文
posted @ 2022-05-12 08:28 qwer78 阅读(156) 评论(0) 推荐(0)
摘要: 进入cmd,之后输入sconfig 阅读全文
posted @ 2022-05-12 08:12 qwer78 阅读(101) 评论(0) 推荐(0)
摘要: import com.aaa.common.ResponseBean; import com.aaa.common.base.BaseController; import com.aaa.service.wrsWaterFeeCapture.entity.WrsWaterFeeCapture; im 阅读全文
posted @ 2022-05-05 15:47 qwer78 阅读(146) 评论(0) 推荐(0)
摘要: SELECT year_month_val, xun, flux, ROUND(@temp:=@temp+flux,4) AS yearVal FROM (SELECT year_month_val, xun, SUM(flux)flux FROM wrs_muw_plan WHERE manage 阅读全文
posted @ 2022-04-25 17:52 qwer78 阅读(74) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 17 下一页