码迷,mamicode.com
首页 >  
搜索关键字:swtch default    ( 18303个结果
实现建表时对应字段(修改时间)自动生成当时系统时间
在建表时: `create_time` timestamp not null default current_timestamp comment'创建时间',--将系统当前时间设为默认值 `update_tiem` timestamp not null default current_timesta ...
分类:其他好文   时间:2020-06-11 01:03:08    阅读次数:62
自定义注解
自定义注解基于元注解来定义自己所需要的注解 @Documented@Target(FIELD) @Retention(RUNTIME) public @interface IdcardValidate { String message() default "身份证号不正确"; Class<?>[] ...
分类:其他好文   时间:2020-06-10 23:06:55    阅读次数:98
6 vue-element.ui 左侧导航栏
<template> <div> <el-menu :default-active="'/'+activeIndex2" mode="vertical" background-color="#344a5f" text-color="#fff" active-text-color="#f56c6c" ...
分类:其他好文   时间:2020-06-10 21:03:13    阅读次数:315
Hyper-V WSL2 Docker Swarm
Crash during reset to factory defaults when Hyper-V is not enabled · Issue #6738 · docker/for-win https://github.com/docker/for-win/issues/6738 [WSL2] ...
分类:其他好文   时间:2020-06-10 20:58:17    阅读次数:77
添加unique约束
create table t1( id int, num1 int, num2 int, unique up (num1) /unique up (num1,num2) )engine=innodb default charset=utf8; ...
分类:其他好文   时间:2020-06-10 19:32:33    阅读次数:78
创建外键及主键
--创建主键 create table t1( nid int(11) not null auto_increment, pid int(11), num int(11), primary key(nid,pid) ) engine=innodb default charset=utf8; --创建 ...
分类:其他好文   时间:2020-06-10 19:26:24    阅读次数:61
Juniper srx防火墙NAT配置
#####本文转自https://www.cnblogs.com/networking/p/4694469.html##### 一、基础操作说明: 1、 设备恢复出厂化 root# load factory-default root# set system root-authentication p ...
分类:其他好文   时间:2020-06-10 13:25:50    阅读次数:117
02 axios
1.request.js 1 import axios from 'axios' 2 import { Message } from 'element-ui'; 3 4 5 const BASEURL = process.env.NODE_ENV 'production' ? '' : '/devA ...
分类:移动开发   时间:2020-06-10 11:19:28    阅读次数:79
ZB埋点汇总
一期C3 标绿的就不要了 没打出来自动化的问题+打出来没有字段区分,一键登录和一键绑定相同的打点 RN人工打点 服务端的SCM字段 推荐列表:同城和在线,SCM字段 弹窗的曝光没有、部分子页面不是之前的方式的、部分列表礼物面板等、超富文本点击区域???一个提示里面是难测的 页面amview的type ...
分类:其他好文   时间:2020-06-10 09:30:13    阅读次数:109
[JAVA]switch case default
public class Calculator { public static void main(String[] args) { //为了避免magic number,采取定义变量 double n1, n2; n1 = 56; n2 = 65; System.out.println(calc( ...
分类:编程语言   时间:2020-06-09 22:05:27    阅读次数:79
18303条   上一页 1 ... 97 98 99 100 101 ... 1831 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!