一、wapper介绍 Wrapper : 条件构造抽象类,最顶端父类 AbstractWrapper : 用于查询条件封装,生成 sql 的 where 条件 QueryWrapper : Entity 对象封装操作类,不是用lambda语法 UpdateWrapper : Update 条件封装, ...
分类:
其他好文 时间:
2021-03-30 13:20:04
阅读次数:
0
背景 Read the fucking source code! --By 鲁迅 A picture is worth a thousand words. --By 高尔基 说明: KVM版本:5.9.1 QEMU版本:5.0.0 工具:Source Insight 3.5, Visio 文章同步在 ...
分类:
系统相关 时间:
2021-03-30 13:07:40
阅读次数:
0
1.输入一个年份,判断是不是闰年(能被4整除但不能被100整除,或者能被400整除) package ktlx; import java.util.Scanner; public class Ktlx1 { /** * @param args */ public static void main(S ...
分类:
编程语言 时间:
2021-03-30 12:51:02
阅读次数:
0
在某些情况下控件需要Path作为图标,此时资源字典中存入的是Geometry数据 Path pathClose = new Path(); pathClose.Data = (Geometry)new ResourceDictionary { Source = new Uri(@"Resources ...
创建一个具备一个请求完整封装的实例,可以便捷的请求,取消请求,获取数据和请求状态等功能 ...
分类:
其他好文 时间:
2021-03-29 12:34:27
阅读次数:
0
项目使用的是ant-pro模板 有个可编辑表格的需求,效果图如下 ant-pro提供了EditableProTable 组件,我使用的是这种https://procomponents.ant.design/components/editable-table 不过这里展示的默认都是input输入框,我 ...
分类:
其他好文 时间:
2021-03-29 11:44:39
阅读次数:
0
最近项目也和linux kernel技术有关,调试内核和内核模块、修改内核源码,是学习内核的重要技术手段之一。应用这些技术时,都有一本基本的要求,那就是编译内核。因此,在分析内核调试技术之前,本随笔给出内核的编译准备工作与具体实现过程。 开发环境 Ubuntu20.04 系统自带的内核版本:5.4. ...
分类:
系统相关 时间:
2021-03-26 15:16:03
阅读次数:
0
Tripwire is a host based Intrusion detection system for Linux. Tripwire monitors Linux system to detect and report any unauthorized changes to the fil ...
分类:
系统相关 时间:
2021-03-18 14:32:34
阅读次数:
0
From:Lance Eliot Apr 2, 2019 The Source:https://lance-eliot.medium.com/multi-sensor-data-fusion-msdf-for-driverless-cars-an-essential-primer-a1948bb8b ...
分类:
其他好文 时间:
2021-03-18 14:10:48
阅读次数:
0
list 去重扩展: public static IEnumerable<TSource> DistinctBy<TSource, TKey>(this IEnumerable<TSource> source, Func<TSource, TKey> keySelector) { HashSet<T ...