主键生成策略 @TabelID uuid 自增ID 雪花算法 mybatis-plus 的主键策略 package com.baomidou.mybatisplus.annotation; public enum IdType { AUTO(0), //数据库自增ID 记住表ID字段一定是自增的 N ...
分类:
其他好文 时间:
2021-04-20 15:05:56
阅读次数:
0
先查看当前系统时间 root@ubuntu:/# date -R 结果时区是:-0500我需要的是东八区,这儿显示不是,所以需要设置一个时区 1.运行tzselect root@ubuntu:/# tzselect 在这里我们选择亚洲 Asia,确认之后选择中国(China),最后选择北京(Beij ...
分类:
系统相关 时间:
2021-04-10 13:40:28
阅读次数:
0
一、RTC实时时钟简介 STM32 的 RTC 外设(Real Time Clock) ,实质是一个掉电后还继续运行的定时器。 只有很纯粹的计时和触发中断的功能; 二、特性 32位的计数器。 只能向上计数。 主电源VDD断开时,由锂电池通过VBAT引脚供电。主电源VDD有效时,由主电源供电。 RTC ...
分类:
其他好文 时间:
2021-03-02 12:05:30
阅读次数:
0
The expensive shops in a famous arcade near Piccadilly were just opening. At this time of the morning, the arcade was almost empty. Mr. Taylor, the ow ...
分类:
其他好文 时间:
2021-02-26 13:05:25
阅读次数:
0
CF 1307 G Cow and Exercise 一个结论: 取出前$k$小的互不相交的路径。 假设它们的长度和为$len_k$ 。 则答案为$\min{(len_k+x)/k}$。 proof: 假设只给$k$条增加,那么一定是尽可能均匀。 如果不是最优的会被覆盖。 /* { ######## ...
分类:
其他好文 时间:
2021-02-22 12:52:10
阅读次数:
0
1. 题目描述 You are given an n x n 2D matrix representing an image, rotate the image by 90 degrees (clockwise). You have to rotate the image in-place, whi ...
分类:
编程语言 时间:
2021-02-18 13:08:31
阅读次数:
0
There are n gas stations along a circular route, where the amount of gas at the ith station is gas[i]. You have a car with an unlimited gas tank and i ...
分类:
其他好文 时间:
2021-02-08 11:44:08
阅读次数:
0
一、functional pattern 测试覆盖率不够,用functional pattern做为补充。 functional pattern保存在EVCD文件里: TEST-T> set_patterns -external -strobe .. filename.evcd 怎么生成EVCD文件 ...
分类:
其他好文 时间:
2021-01-11 11:05:53
阅读次数:
0
package LeetCode_1184 /** * 1184. Distance Between Bus Stops * https://leetcode.com/problems/distance-between-bus-stops/ * A bus has n stops numbered ...
分类:
其他好文 时间:
2021-01-07 12:12:35
阅读次数:
0
1、安装ntpdate,执行以下命令 # 安装utpdate命令 yum install ntpdate -y 2、手工同步网络时间,执行以下命令,将从time.nist.gov同步时间 ntpdate 0.asia.pool.ntp.org 若上面的时间服务器不可用,也可以选择以下服务器同步时间 ...
分类:
系统相关 时间:
2020-12-31 12:13:31
阅读次数:
0