csjoz11

导航

上一页 1 ··· 3 4 5 6 7 8 9 10 下一页

2021年11月16日 #

kuang generator

摘要: package com.qfedu.springboot.ssm; import com.baomidou.mybatisplus.annotation.DbType;import com.baomidou.mybatisplus.annotation.FieldFill;import com.ba 阅读全文

posted @ 2021-11-16 13:59 csjoz11 阅读(80) 评论(0) 推荐(0) 编辑

new ArrayList json.parse

摘要: package com.sapdev.ws.getoperation; import java.text.MessageFormat;import java.util.ArrayList;import java.util.List;import java.util.Map; import javax 阅读全文

posted @ 2021-11-16 11:53 csjoz11 阅读(53) 评论(0) 推荐(0) 编辑

servlet

摘要: https://gitee.com/huarongyu/jsp servlet-online-bookstore.git https://gitee.com/Saxon_MO/jsp_blog.git https://gitee.com/XiaoLin_Java/jsp-servlet-order- 阅读全文

posted @ 2021-11-16 02:09 csjoz11 阅读(22) 评论(0) 推荐(0) 编辑

2021年11月14日 #

企业微信

摘要: https://open.work.weixin.qq.com/api/doc/9000/90135/90664 阅读全文

posted @ 2021-11-14 22:05 csjoz11 阅读(53) 评论(0) 推荐(0) 编辑

2021年11月4日 #

vue中引入echarts 报错“export ‘default‘ (imported as ‘echarts‘) was not found in ‘echarts‘

摘要: 问题引入 echars 5.0 遇到报错 "export ‘default’ (imported as ‘echarts’) was not found in ‘echarts’ 解决引入方式改为 import * as echarts from 'echarts';// 或const echart 阅读全文

posted @ 2021-11-04 23:55 csjoz11 阅读(766) 评论(0) 推荐(0) 编辑

2021年11月3日 #

https://echarts.apache.org/examples/zh/index.html

摘要: https://echarts.apache.org/examples/zh/index.html 阅读全文

posted @ 2021-11-03 21:24 csjoz11 阅读(527) 评论(0) 推荐(0) 编辑

vue中使用localStorage存储信息

摘要: 一 什么是localStorage 对浏览器来说,使用 Web Storage 存储键值对比存储 Cookie 方式更直观,而且容量更大,它包含两种:localStorage 和 sessionStorage sessionStorage(临时存储) :为每一个数据源维持一个存储区域,在浏览器打开期 阅读全文

posted @ 2021-11-03 14:28 csjoz11 阅读(204) 评论(0) 推荐(0) 编辑

Vue+Echarts折线图

摘要: 在jQuery里面,实现一个折线图,【前端统计图】echarts实现单条折线图https://www.jianshu.com/p/0354a4f8c563。 现在要实现,Vue+Echarts实现一个折线图,打开之前的mint项目: 1:在项目里面安装echarts cnpm install ech 阅读全文

posted @ 2021-11-03 11:26 csjoz11 阅读(509) 评论(0) 推荐(0) 编辑

mybatisplus联表

摘要: ________________________________controller@GetMapping("/pageTwo") @ApiOperation("") public R<IPage<SysDBasicsEquipment>> getsysDBasicsEquipmentService 阅读全文

posted @ 2021-11-03 11:26 csjoz11 阅读(215) 评论(0) 推荐(0) 编辑

2021年11月2日 #

图片保存

摘要: <a style="display: block;height: 148px;overflow: hidden;border-radius: 4px;background: #516bf7;" v-if="bannerType '1'"><img src="@/views/dashboard/ima 阅读全文

posted @ 2021-11-02 01:06 csjoz11 阅读(13) 评论(0) 推荐(0) 编辑

2021年10月31日 #

lambda表达式

摘要: 阅读全文

posted @ 2021-10-31 19:56 csjoz11 阅读(11) 评论(0) 推荐(0) 编辑

2021年10月30日 #

MyBatisCodeHelper-Pro

摘要: 知了 朝闻道,夕可眠矣。 MyBatisCodeHelper-Pro插件破解版[2.8.2] 2019-04-23 | 软件调试 介绍 MyBatisCodeHelper-Pro是IDEA下的一个插件,功能类似mybatis plugin。 最新版本请使用:MyBatisCodeHelperPro 阅读全文

posted @ 2021-10-30 18:07 csjoz11 阅读(225) 评论(0) 推荐(0) 编辑

2021年10月28日 #

mybatis-plus-join

摘要: mybatis plus的一个多表插件,上手简单,只要会用mp就会用这个插件,仅仅依赖了lombok和fastJson,而且是扩展mp的构造器并非更改原本的构造器,不会对原有项目产生一点点影响,相信大多数项目都有这俩插件,四舍五入就是没依赖。 mybatis-plus-join示例:** gitee 阅读全文

posted @ 2021-10-28 08:00 csjoz11 阅读(3623) 评论(0) 推荐(0) 编辑

2021年10月22日 #

需求1

摘要: 阅读全文

posted @ 2021-10-22 09:19 csjoz11 阅读(12) 评论(0) 推荐(0) 编辑

2021年10月21日 #

vue_antd_admin 文档

摘要: https://x-extends.github.io/vxe-table/#/table/base/height https://1x.antdv.com/components/time-pickerhttps://2x.antdv.com/components/date-pickerhttps: 阅读全文

posted @ 2021-10-21 14:30 csjoz11 阅读(372) 评论(0) 推荐(0) 编辑

2021年10月20日 #

mysql重复记录取最后一条记录方法_mysql重复记录取最后一条记录方法

摘要: SELECT full_name,substring_index(group_concat(id ORDER BY id DESC),",",1) AS id FROM bzyd_perf_result GROUP BY full_name; 如下表: 代码如下 CREATE TABLE `t1` 阅读全文

posted @ 2021-10-20 09:29 csjoz11 阅读(1232) 评论(0) 推荐(0) 编辑

2021年10月19日 #

mybatis多表查询

摘要: 阅读全文

posted @ 2021-10-19 00:19 csjoz11 阅读(32) 评论(0) 推荐(0) 编辑

2021年10月18日 #

foreach 查出BIGTYPE,SMALLTYPE

摘要: package com.qfedu.springboot.ssm.mapper; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.qfedu.springboot.ssm.entity.Ca 阅读全文

posted @ 2021-10-18 23:26 csjoz11 阅读(17) 评论(0) 推荐(0) 编辑

mybatisplus generator

摘要: package com.qfedu.springboot.ssm; import com.baomidou.mybatisplus.annotation.DbType; import com.baomidou.mybatisplus.annotation.FieldFill; import com. 阅读全文

posted @ 2021-10-18 22:39 csjoz11 阅读(62) 评论(0) 推荐(0) 编辑

antd点击跳转页面且有参数_Vue 页面跳转与参数传递

摘要: 标签跳转1、不带参数跳转 <router-link to="/about"> <button>跳转到关于我们</button></router-link> <router-link :to="{path: '/about'}"> <button>跳转到关于我们</button></router-li 阅读全文

posted @ 2021-10-18 10:08 csjoz11 阅读(405) 评论(0) 推荐(0) 编辑

2021年10月15日 #

简单取最小值

摘要: import java.io.*;class test { public static void main (String[] args) throws java.lang.Exception { Integer aa = 10; Integer aa1 = 6; Integer aa11 = 21 阅读全文

posted @ 2021-10-15 09:11 csjoz11 阅读(62) 评论(0) 推荐(0) 编辑

2021年10月13日 #

Axure

摘要: 自新的Axure RP 9.0 Beta版发布以来,历经多次更新发版,很多小伙伴在新版本出来的时候,也会选择更新到最新版。当然我也不例外喽。 但是,当更新至v9.0.0.3629或以上版本时,就会发现,原本在Axure RP 8.0版本可以正常使用的授权码已失效。重新输入密钥,点击提交时,会提示“无 阅读全文

posted @ 2021-10-13 13:55 csjoz11 阅读(333) 评论(0) 推荐(0) 编辑

2021年10月11日 #

Ant Design中select框往下滑动会自动回到顶部的问题

摘要: 问题重现:用户在使用如下图所示的选择框时,在向下滑动时,鼠标再次移动,滑竿会自动回到顶部。 代码定位: 问题分析:获取到的dataFromOptions中是以key,value形式存在的。而当选择全部这个选项时,后台规定返回的值是null后查询得知,ant design框架的select框的key值 阅读全文

posted @ 2021-10-11 14:42 csjoz11 阅读(362) 评论(0) 推荐(0) 编辑

ant design vue 日期选择器只选择年份

摘要: https://antdv.com/docs/vue/introduce-cn/ 1 2 3 4 5 6 7 8 9 10 11 12 13 <a-form-model :model="form" :label-col="labelCol" :wrapper-col="wrapperCol"> <a 阅读全文

posted @ 2021-10-11 11:01 csjoz11 阅读(1478) 评论(0) 推荐(0) 编辑

JS如何判断一个数组是否为空、是否含有某个值

摘要: 一、js判断数组是否为空 方法一: arr.length let arr = []; if (arr.length == 0){ console.log("数组为空") }else { console.log("数组不为空") } 二、js判断数组是否含有某个值 方法一: arr.indexOf() 阅读全文

posted @ 2021-10-11 09:20 csjoz11 阅读(1090) 评论(0) 推荐(0) 编辑

2021年10月9日 #

elementUI 学习入门之 Button 按钮

摘要: 基础按钮用法 <!-- <a-button type="primary" style="margin: 0 8px" @click="insertEvent">新增</a-button>--> <vxe-button status="primary" @click="insertEvent" con 阅读全文

posted @ 2021-10-09 02:15 csjoz11 阅读(1047) 评论(0) 推荐(0) 编辑

2021年10月8日 #

Mysql 如何设置字段自动获取当前时间

摘要: 应用场景: 1、在数据表中,要记录每条数据是什么时候创建的,不需要应用程序去特意记录,而由数据数据库获取当前时间自动记录创建时间; 2、在数据库中,要记录每条数据是什么时候修改的,不需要应用程序去特意记录,而由数据数据库获取当前时间自动记录修改时间; 实现方式: 1、将字段类型设为 TIMESTAM 阅读全文

posted @ 2021-10-08 10:41 csjoz11 阅读(135) 评论(0) 推荐(0) 编辑

2021年9月30日 #

最简单的 MyBatis Plus 的多表联接、分页查询实现方法

摘要: 一、前言最近在加强 ITAEM 团队的一个 app 项目——学生教师学习交流平台人员组成:安卓 + 前端 + 后台后台 DAO 层借鉴了华工其他软件开发团队,使用了新颖强大的 MyBatisPlus 框架,里边有一个类似百度贴吧的发帖子的功能: 而如果设计表,应为 帖子表 t_post- id- t 阅读全文

posted @ 2021-09-30 00:09 csjoz11 阅读(3000) 评论(0) 推荐(0) 编辑

2021年9月27日 #

Vue组件模板形式实现对象数组数据循环为树形结构(实例代码)

摘要: 数据结构为数组中包含对象--树形结构,用Vue组件的写法实现以下的效果: 树形列表,缩进显示层级,第5级数据加底色,数据样式显色,点击展开折叠数据。本文为用Vue实现方式,另有一篇为用knockout.js的实现方法。 html代码 1 2 3 <div id="table-component-di 阅读全文

posted @ 2021-09-27 22:54 csjoz11 阅读(507) 评论(0) 推荐(0) 编辑

打开画图工具命令

摘要: 1.同时按下键盘上的 【Windows】键跟【R】键。 2.在弹出的运行框中,输入“mspaint”,点击确定。 3.画图板打开,可以使用画图板功能。 阅读全文

posted @ 2021-09-27 08:15 csjoz11 阅读(791) 评论(0) 推荐(0) 编辑

github

摘要: csjoz1122 阅读全文

posted @ 2021-09-27 01:25 csjoz11 阅读(13) 评论(0) 推荐(0) 编辑

2021年9月26日 #

VUE数字相加

摘要: hello(){ console.log(this.form.total) console.log(this.form.commentThree) this.form.total = parseFloat(this.form.commentOne) + parseFloat(this.form.co 阅读全文

posted @ 2021-09-26 16:43 csjoz11 阅读(699) 评论(0) 推荐(0) 编辑

ALTER TABLE同时增加多行

摘要: ALTER TABLE bzyd_perf_examine add COLUMN `comment_one0` int(11) DEFAULT NULL COMMENT '评价1', `comment_two0` int(11) DEFAULT NULL COMMENT '评价2', `commen 阅读全文

posted @ 2021-09-26 16:41 csjoz11 阅读(198) 评论(0) 推荐(0) 编辑

Java 异常 Failed to convert property value of type 'java.lang.String' to required type 'java.util.Date'

摘要: 查询时发送给服务器的日期的字符串格式:yyyy-MM-dd HH:mm:ss 服务器接收到日期的字符串之后,向 MySQL 数据库发起查询时,因为没有指定日期时间格式,导致字符串数据不能正确地转换为日期而产生的错误: 1 2019-12-05 17:43:55.215 WARN 1460 [nio- 阅读全文

posted @ 2021-09-26 09:59 csjoz11 阅读(954) 评论(0) 推荐(0) 编辑

MYSQL查询整月

摘要: SELECT * FROM team_member WHERE create_time > '2021-08%'SELECT create_time FROM team_member WHERE DATE_FORMAT(create_time,"%Y-%m") = '2020-08' void te 阅读全文

posted @ 2021-09-26 02:03 csjoz11 阅读(40) 评论(0) 推荐(0) 编辑

2021年9月24日 #

Cannot deserialize value of type `java.util.Date` from String

摘要: 31 2 Using Spring 1.5.8.RELEASE Jackson mapper giving the following exception. Cannot deserialize value of type `java.util.Date` from String "2018-09- 阅读全文

posted @ 2021-09-24 10:15 csjoz11 阅读(3613) 评论(0) 推荐(0) 编辑

代码生成器mybatisplus

摘要: package com.qfedu.springboot.ssm; import com.baomidou.mybatisplus.annotation.DbType; import com.baomidou.mybatisplus.annotation.FieldFill; import com. 阅读全文

posted @ 2021-09-24 02:23 csjoz11 阅读(44) 评论(0) 推荐(0) 编辑

2021年9月23日 #

MySQL根据父ID排序类别

摘要: mysql sort category according to parent id https://mp.baomidou.com/guide/wrapper.html#nested LamdaQueryWrapper<Member> MemberWrapper = new LamdaQueryW 阅读全文

posted @ 2021-09-23 23:15 csjoz11 阅读(389) 评论(0) 推荐(0) 编辑

isNotBlank的用法

摘要: isNotEmpty将空格也作为参数,isNotBlank则排除空格参数 QuoteStringUtils方法的操作对象是java.lang.String类型的对象,是JDK提供的String类型操作方法的补充,并且是null安全的(即如果输入参数String为null则不会抛出NullPointe 阅读全文

posted @ 2021-09-23 16:25 csjoz11 阅读(383) 评论(0) 推荐(0) 编辑

IDEA中的.iml文件和.idea文件夹

摘要: 使用IDEA创建一个maven工程,目录结构中会产生了两个不一样的东西——分别是 .iml文件和.idea文件夹。 iml是 intellij idea的工程配置文件,里面是当前project的一些配置信息。 .Idea存放项目的配置信息,包括历史记录,版本控制信息等,可以不理会。 我们也可以配置隐 阅读全文

posted @ 2021-09-23 16:12 csjoz11 阅读(367) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 下一页