新增字段 alter table MIC2005.QP_CAT_DESCRIPTION add (type varchar2(2) default '0' not null ); --新增字段 comment on column MIC2005.QP_CAT_DESCRIPTION.type is ...
分类:
数据库 时间:
2021-06-22 18:17:13
阅读次数:
0
Swagger2集成Spring Boot中的依赖(使用knife4j接口文档) 一·导入依赖Swagger2和knife4j的依赖 <!-- knife4j接口文档 --> <dependency> <groupId>io.springfox</groupId> <artifactId>sprin ...
分类:
编程语言 时间:
2021-06-22 18:11:24
阅读次数:
0
人之忌,在好为人师。——《孟子·离娄上》段目二十三。 今天是6月19日周六,原计划早起跑步可惜外面雨下的很大,既然没办法出门跑步睡又睡不着索性写点东西,写到哪算哪吧。 从最初给自己看的工作记录流水账到开放的自媒体平台,写了差不多有三四年了。偶尔翻一翻过去写的东西会发现内容领域并不是那么垂直,很多内容 ...
分类:
其他好文 时间:
2021-06-22 18:06:24
阅读次数:
0
import android.annotation.TargetApi; import android.content.Context; import android.content.res.TypedArray; import android.os.Build; import android.ut ...
分类:
移动开发 时间:
2021-06-22 17:57:53
阅读次数:
0
1.IP是网络层的协议,IP协议规定了数据的封装方式,网络节点的标识方法,用于网络上数据的端到端的传递 2.IP头格式[1byte = 8bit] version[4bit] 版本:用来标识封装的为IPV4或IPV6 IHL[4bit] 头部长度:用来描述数据包头的内容长度 Type of Serv ...
分类:
其他好文 时间:
2021-06-22 17:52:19
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width,initial-scale=1.0" /> <title>数据可视化< ...
分类:
Web程序 时间:
2021-06-22 17:36:40
阅读次数:
0
1、查看所有索引 GET _cat/indices 2、创建一个新的索引 PUT /test { "mappings": { "_doc": { "properties": { "id": {"type": "keyword"}, "title": {"type": "keyword"}, "esD ...
分类:
其他好文 时间:
2021-06-21 21:11:29
阅读次数:
0
1.今天继续学习fragment 布局就不放了 重要代码: MyFragment.java: public class MyFragment extends Fragment { private String content; public MyFragment(String content) { ...
分类:
其他好文 时间:
2021-06-21 21:09:34
阅读次数:
0
需求:选择不同的路径选择方式,得出相应的线路。 代码: <div class="input-card" style="width: auto;"> <div class="input-item" style="width:auto;"> 出发起点<input id="text_1" type="te ...
目标 输入功能的语法 输入input的特点 一. 输入 在Python中,程序接收用户输入的数据的功能即是输入。 1.2 输入的语法 input("提示信息") 1.3 输入的特点 当程序执行到input,等待用户输入,输入完成之后才继续向下执行。 在Python中,input接收用户输入后,一般存 ...
分类:
其他好文 时间:
2021-06-21 20:49:35
阅读次数:
0