上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 60 下一页
  2021年6月10日
摘要: EF命令Update-Database -Script -SourceMigration:"201901210832533_addTemporaryAttendanceDetail20190121.cs" -TargetMigration:"201902282225506_updatetableCo 阅读全文
posted @ 2021-06-10 16:51 邢帅杰 阅读(341) 评论(0) 推荐(0) 编辑
摘要: List<E>与Set<E>都继承接口Collection<E>List<E>:1、可以添加重复的对象2、可以插入多个null元素3、是一个有序的容器,保持了每个元素的插入顺序。即输出顺序就是输入顺序。4、常用实现类ArrayList、LinkedList、Vector。ArrayList 最为流行 阅读全文
posted @ 2021-06-10 15:35 邢帅杰 阅读(132) 评论(0) 推荐(0) 编辑
  2021年4月8日
摘要: 代码1 List<Integer> list = Arrays.asList(10,1,3,4,6,7); // 降序排列 Collections.sort(list, new Comparator<Integer>() { @Override public int compare(Integer 阅读全文
posted @ 2021-04-08 18:00 邢帅杰 阅读(60) 评论(0) 推荐(0) 编辑
  2021年4月1日
摘要: 1、联网桌面》BT SystemMenu》2.通信设置》1.无线网》1.连接/认证》基础无线连接》认证:WPA2 PSK加密:AESSSID:搜索无线网络信号,选择一个。PSK:无线网密码在左下角点击按钮 连接 2、连接蓝牙打印机桌面》BT SystemMenu》2.通信设置》2.Bluetooth 阅读全文
posted @ 2021-04-01 11:00 邢帅杰 阅读(1391) 评论(0) 推荐(0) 编辑
  2021年3月31日
摘要: 多种方法实现等待所有子线程完成再继续执行:https://www.cnblogs.com/larrydpk/p/17195498.html四种使用线程的方式:继承Thread、实现Runnable接口、实现Callable接口、使用线程池(ThreadPool);代码: package com.ja 阅读全文
posted @ 2021-03-31 15:54 邢帅杰 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 配置1、File》Settings》Appearance&Behavior》设置主题2、File》Settings》Appearance&Behavior》Appearance》设置窗体及菜单栏的字体大小3、File》Settings》Editor》Color Scheme》设置编辑区字体及颜色4、 阅读全文
posted @ 2021-03-31 11:18 邢帅杰 阅读(89) 评论(0) 推荐(0) 编辑
  2021年3月15日
摘要: java视频:https://www.bilibili.com/video/BV1Kb411W75N?p=577SpringBoot、SpringMVC、分布式锁(数据库锁、Redis锁、ZK、JVM)1、编译命令:javac hello.java 运行命令:java hello 文档化命令:jav 阅读全文
posted @ 2021-03-15 14:14 邢帅杰 阅读(109) 评论(0) 推荐(0) 编辑
  2021年3月5日
摘要: 例如(用的是IView前端组件、建议使用ElementUI免费的): <FormItem :label="L('ProductPrice')" prop="price"> <Input v-model="formModel.price" :maxlength="32"></Input> </Form 阅读全文
posted @ 2021-03-05 17:42 邢帅杰 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.jianshu.com/p/1e6eabae736bhttps://github.com/dwqs/vue-area-linkage 1、安装:建议安装v5及之后的版本npm i --save vue-area-linkage area-data 或者 yarn add 阅读全文
posted @ 2021-03-05 17:19 邢帅杰 阅读(328) 评论(0) 推荐(0) 编辑
  2021年2月25日
摘要: 1、之前我下载的是最新的ABP ASP.NetCore V5.x版本的ABP框架,连接MySql的时候要安装pomelo.entityframeworkcore.mysql和pomelo.entityframeworkcore.mysql.design,发现没法装,因为版本号不匹配2、然后下载V3. 阅读全文
posted @ 2021-02-25 11:15 邢帅杰 阅读(174) 评论(0) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 60 下一页