在实体类中添加@TableId注解: @Data public class DxApplication { @TableId(type = IdType.AUTO) private Long id; private String name; private Integer sort; } 在navi ...
                            
                            
                                分类:
其他好文   时间:
2021-06-11 18:35:34   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    防抖 function debounce(fun,delay){ let timer = null return function(){ if(timer){ clearTimeout(timer) } timer = setTimeout(()=>{ fun.apply(this,argument ...
                            
                            
                                分类:
编程语言   时间:
2021-06-11 18:25:11   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    使用QT 的信号与槽函数的过程,编译完成后,在运行程序是出现如下信息: QObject::connect: Cannot queue arguments of type 'myReadBuf'(Make sure 'myReadBuf' is registered using qRegisterMe ...
                            
                            
                                分类:
其他好文   时间:
2021-06-11 18:06:00   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    报错 Starting MySQL... ERROR! The server quit without updating PID file (/usr/local/mysql/$hostname.pid). 应该我在/etc/my.conf配置默认字符集的问题 https://blog.csdn.n ...
                            
                            
                                分类:
数据库   时间:
2021-06-11 18:02:40   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                PUT nba { "settings":{ "number_of_shards": 1, "number_of_replicas": 0 }, "mappings":{ "properties":{ "name_cn":{ "type":"text" }, "name_en":{ "type":" ...
                            
                            
                                分类:
移动开发   时间:
2021-06-11 17:45:22   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    numpy库的基本操作 import numpy as np import math #创建数组 a=np.arange(10) print(a) print(type(a)) #对数组里面的元素开平分 b=[3,4,9] #定义结果列表 result=[] #遍历列表 for i in b: pr ...
                            
                            
                                分类:
编程语言   时间:
2021-06-10 18:30:37   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    cv2.threshold (src, thresh, maxval, type) cv2.threshold (源图片, 阈值, 填充色, 阈值类型) 这里看看具体例子和矩阵中的变换: import numpy as np import cv2 from matplotlib import pyp ...
                            
                            
                                分类:
其他好文   时间:
2021-06-10 18:30:19   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                #COMMAND="hive -i settings/load-${SCHEMA_TYPE}.sql -f ddl-tpch/bin_${SCHEMA_TYPE}/${t}.sql \ # -d DB=${DATABASE} \ # -d SOURCE=tpch_text_${SCALE} -d B ...
                            
                            
                                分类:
其他好文   时间:
2021-06-10 18:25:11   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    浏览器会从计算机的内存条中分配对应的内存,用于存储值和运行代码 Stack:栈内存 ECStack(Execution Context Stack) 原始值类型存储在栈内存中 提供对应的执行上下文EC(Execution Context)供代码执行 Heap:堆内存 存储对象类型的值 举例:基于一段 ...
                            
                            
                                分类:
编程语言   时间:
2021-06-10 18:10:13   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    一、封装全局异常过滤器实现IExceptionFilter接口 public class GlobalExceptionFilter : IExceptionFilter { public void OnException(ExceptionContext context) { if (contex ...
                            
                            
                                分类:
Web程序   时间:
2021-06-10 18:02:47   
                                阅读次数:
0