后端: 实体:AppointmentDto中的 startDate、endDate /** * 开始时间 */ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(timezone = "GMT+8", pattern = "yy ...
分类:
其他好文 时间:
2020-09-18 04:07:58
阅读次数:
48
1、展开操作符 顾名思义,用于对象或数组之前的展开操作符(…),将一个结构展开为列表。 演示一下: let firstHalf = [ one , two ]; let secondHalf = [ three , four , ...firstHalf]; 这种写法够优雅,够简洁吧?如果不用展开操 ...
分类:
其他好文 时间:
2020-09-18 03:09:05
阅读次数:
31
目录 引子 Line/Point Line/Circle Line/Line Line/Rectangle 参考资料 引子 在 Collision Detection :Rectangle 中主要介绍了矩形相关的碰撞检测,接着来看看直线的情况。 以下示例未做兼容性检查,建议在最新的 Chrome 浏 ...
分类:
其他好文 时间:
2020-09-18 00:52:10
阅读次数:
31
You are playing the following Bulls and Cows game with your friend: You write down a number and ask your friend to guess what the number is. Each time ...
分类:
其他好文 时间:
2020-09-17 22:49:35
阅读次数:
38
参考:https://labuladong.gitbook.io/algo/dong-tai-gui-hua-xi-lie/dong-tai-gui-hua-zhi-bo-yi-wen-ti 问题: 给定一堆石子的得分。A和B两个人进行如下游戏, 轮流,从石堆的两边选择一个石子,最终获得得分最大的人 ...
分类:
其他好文 时间:
2020-09-17 20:37:47
阅读次数:
21
系统安装好以后如下面图中所示,我这里使用的是windows server 2016 standard版本。 在查看系统信息页面的左边,可以看到一个高级系统点击,点击这个连接。进入到系统设置页面,然后点击右边的远程选项卡。 3 将下面的允许远程连接到此计算机的选项选中,同时将仅允许使用安全网络验证这个 ...
https://github.com/januwA/GameCheat #include "pch.h" #include <iostream> #include <Windows.h> #include "GameCheat.h" using namespace std; void __stdca ...
分类:
编程语言 时间:
2020-09-17 15:31:59
阅读次数:
36
转自:https://blog.csdn.net/weixin_41796631/article/details/82939585 ...
分类:
Web程序 时间:
2020-09-17 15:31:08
阅读次数:
35
滚动条样式在不同浏览器不同效果,想要大致的修改浏览器的滚动条在谷歌火狐有css属性支持,而ie不支持 废话不多说,附上代码 /*修改滚动条样式谷歌 start*/ .menu-ver::-webkit-scrollbar { width: 6px; height: 6px; } .menu-ver: ...
分类:
Web程序 时间:
2020-09-17 14:13:55
阅读次数:
40
https://www.cnblogs.com/chay1227/p/4479765.html 3. SQLServer存储引擎之日志篇 (3.1)日志结构 (3.1.1)物理日志 (0)物理日志即数据库的.ldf文件, 当然后缀名是可以自定义的,默认是.ldf (1)一个SqlServer数据库, ...
分类:
数据库 时间:
2020-09-14 18:48:34
阅读次数:
40