摘要:知了 朝闻道,夕可眠矣。 MyBatisCodeHelper-Pro插件破解版[2.8.2] 2019-04-23 | 软件调试 介绍 MyBatisCodeHelper-Pro是IDEA下的一个插件,功能类似mybatis plugin。 最新版本请使用:MyBatisCodeHelperPro
阅读全文
摘要:mybatis plus的一个多表插件,上手简单,只要会用mp就会用这个插件,仅仅依赖了lombok和fastJson,而且是扩展mp的构造器并非更改原本的构造器,不会对原有项目产生一点点影响,相信大多数项目都有这俩插件,四舍五入就是没依赖。 mybatis-plus-join示例:** gitee
阅读全文
摘要:https://x-extends.github.io/vxe-table/#/table/base/height https://1x.antdv.com/components/time-pickerhttps://2x.antdv.com/components/date-pickerhttps:
阅读全文
摘要: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`
阅读全文
摘要:package com.qfedu.springboot.ssm.mapper; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.qfedu.springboot.ssm.entity.Ca
阅读全文
摘要:package com.qfedu.springboot.ssm; import com.baomidou.mybatisplus.annotation.DbType; import com.baomidou.mybatisplus.annotation.FieldFill; import com.
阅读全文
摘要:标签跳转1、不带参数跳转 <router-link to="/about"> <button>跳转到关于我们</button></router-link> <router-link :to="{path: '/about'}"> <button>跳转到关于我们</button></router-li
阅读全文
摘要:import java.io.*;class test { public static void main (String[] args) throws java.lang.Exception { Integer aa = 10; Integer aa1 = 6; Integer aa11 = 21
阅读全文
摘要:自新的Axure RP 9.0 Beta版发布以来,历经多次更新发版,很多小伙伴在新版本出来的时候,也会选择更新到最新版。当然我也不例外喽。 但是,当更新至v9.0.0.3629或以上版本时,就会发现,原本在Axure RP 8.0版本可以正常使用的授权码已失效。重新输入密钥,点击提交时,会提示“无
阅读全文
摘要:问题重现:用户在使用如下图所示的选择框时,在向下滑动时,鼠标再次移动,滑竿会自动回到顶部。 代码定位: 问题分析:获取到的dataFromOptions中是以key,value形式存在的。而当选择全部这个选项时,后台规定返回的值是null后查询得知,ant design框架的select框的key值
阅读全文
摘要: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
阅读全文
摘要:一、js判断数组是否为空 方法一: arr.length let arr = []; if (arr.length == 0){ console.log("数组为空") }else { console.log("数组不为空") } 二、js判断数组是否含有某个值 方法一: arr.indexOf()
阅读全文
摘要:基础按钮用法 <!-- <a-button type="primary" style="margin: 0 8px" @click="insertEvent">新增</a-button>--> <vxe-button status="primary" @click="insertEvent" con
阅读全文
摘要:应用场景: 1、在数据表中,要记录每条数据是什么时候创建的,不需要应用程序去特意记录,而由数据数据库获取当前时间自动记录创建时间; 2、在数据库中,要记录每条数据是什么时候修改的,不需要应用程序去特意记录,而由数据数据库获取当前时间自动记录修改时间; 实现方式: 1、将字段类型设为 TIMESTAM
阅读全文