Explore Enterprise Education Gitee Premium Gitee AI AI teammates
Fetch the repository succeeded.
Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
Already have an account? Sign in
文件
master
Branches (1)
master
master
Branches (1)
master
Clone or Download
Clone/Download
Prompt
To download the code, please copy the following command and execute it in the terminal
To ensure that your submitted code identity is correctly recognized by Gitee, please execute the following command.
When using the SSH protocol for the first time to clone or push code, follow the prompts below to complete the SSH configuration.
1 Generate RSA keys.
2 Obtain the content of the RSA public key and configure it in SSH Public Keys
To use SVN on Gitee, please visit the usage guide
When using the HTTPS protocol, the command line will prompt for account and password verification as follows. For security reasons, Gitee recommends configure and use personal access tokens instead of login passwords for cloning, pushing, and other operations.
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # Private Token
master
Branches (1)
master
superb
/
sql
/
init.sql
superb
/
sql
/
init.sql
init.sql 17.59 KB
Copy Edit Raw Blame History
王志昂 authored 2016年12月09日 15:51 +08:00 . 去掉写死的收信人
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
CREATE TABLE `zt_api` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '接口编号',
`aid` int(11) DEFAULT '0' COMMENT '接口分类id',
`num` varchar(100) DEFAULT NULL COMMENT '接口编号',
`url` varchar(240) DEFAULT NULL COMMENT '请求地址',
`name` varchar(100) DEFAULT NULL COMMENT '接口名',
`des` varchar(300) DEFAULT NULL COMMENT '接口描述',
`parameter` text COMMENT '请求参数{所有的主求参数,以json格式在此存放}',
`raw_param` text COMMENT '文本格式的参数定义',
`memo` text COMMENT '备注',
`re` text COMMENT '返回值',
`lasttime` int(11) unsigned DEFAULT NULL COMMENT '提后操作时间',
`lastuid` int(11) unsigned DEFAULT NULL COMMENT '最后修改uid',
`isdel` tinyint(4) unsigned DEFAULT '0' COMMENT '{0:正常,1:删除}',
`type` char(11) DEFAULT NULL COMMENT '请求方式',
`ord` int(11) DEFAULT '0' COMMENT '排序(值越大,越靠前)',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='接口明细表';
CREATE TABLE `zt_api_auth` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`uid` int(11) DEFAULT NULL COMMENT '用户',
`aid` int(11) DEFAULT NULL COMMENT '接口分类权限',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='权限表 - 若用户为普通管理员时,读此表获取权限';
CREATE TABLE `zt_api_cate` (
`aid` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '分类id',
`cname` varchar(200) NOT NULL DEFAULT '' COMMENT '分类名称',
`cdesc` varchar(200) NOT NULL DEFAULT '' COMMENT '分类描述',
`isdel` int(11) DEFAULT '0' COMMENT '是否删除{0:正常,1删除}',
`addtime` int(11) NOT NULL DEFAULT '0' COMMENT '添加时间',
`parent_id` int(11) NOT NULL DEFAULT '0' COMMENT '父级分类id',
PRIMARY KEY (`aid`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='接口分类表';
CREATE TABLE `zt_code_git_project` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`gmt_create` datetime NOT NULL DEFAULT '1970-01-01 12:00:00' COMMENT '创建时间',
`creator` int(11) NOT NULL DEFAULT '0' COMMENT '创建人ID',
`gmt_modified` datetime DEFAULT '1970-01-01 12:00:00' COMMENT '更新时间',
`modifier` int(11) NOT NULL DEFAULT '0' COMMENT '更新人ID',
`is_deleted` char(1) NOT NULL DEFAULT 'N' COMMENT '实例当前状态:N代表正在使用;Y代表已经被删除',
`project_name` varchar(100) NOT NULL DEFAULT '' COMMENT '项目名称',
`git_url` varchar(255) NOT NULL DEFAULT '' COMMENT 'git项目地址',
PRIMARY KEY (`id`),
UNIQUE KEY `git_url_index` (`git_url`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='git项目管理表';
CREATE TABLE `zt_code_subscribe_git` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`gmt_create` datetime NOT NULL DEFAULT '1970-01-01 12:00:00' COMMENT '创建时间',
`creator` int(11) NOT NULL DEFAULT '0' COMMENT '创建人ID',
`gmt_modified` datetime DEFAULT '1970-01-01 12:00:00' COMMENT '更新时间',
`modifier` int(11) NOT NULL DEFAULT '0' COMMENT '更新人ID',
`is_deleted` char(1) NOT NULL DEFAULT 'N' COMMENT '实例当前状态:N代表正在使用;Y代表已经被删除',
`git_project_id` int(11) NOT NULL COMMENT '被订阅的Git项目的id',
`user_id_subscribe_to` int(11) NOT NULL COMMENT '被订阅的用户id,0为所有人',
`user_id_subscriber` int(11) NOT NULL COMMENT '订阅者的用户id',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='订阅git代码记录表';
CREATE TABLE `zt_crm_duty` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) DEFAULT NULL,
`name` varchar(20) DEFAULT NULL,
`monday` int(11) NOT NULL DEFAULT '0',
`tuesday` int(11) NOT NULL DEFAULT '0',
`wednesday` int(11) NOT NULL DEFAULT '0',
`thursday` int(11) NOT NULL DEFAULT '0',
`friday` int(11) NOT NULL DEFAULT '0',
`saturday` int(11) NOT NULL DEFAULT '0',
`sunday` int(11) NOT NULL DEFAULT '0',
`is_delete` int(11) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
CREATE TABLE `zt_issue` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增id',
`ctime` datetime NOT NULL COMMENT '创建时间',
`mtime` datetime NOT NULL COMMENT '更新时间',
`name` varchar(255) NOT NULL COMMENT '需求名称',
`project` int(11) NOT NULL,
`description` text NOT NULL COMMENT '需求描述',
`needer` int(11) NOT NULL COMMENT '需求人',
`developer` int(11) NOT NULL COMMENT '需求开发负责人',
`develop_members` varchar(255) NOT NULL COMMENT '逗号隔开的开发id',
`tester` int(11) NOT NULL COMMENT '测试人',
`require_time` datetime NOT NULL COMMENT '需求提出时间',
`require_confirm_time` datetime NOT NULL COMMENT '需求确认时间',
`cancel_require_time` datetime NOT NULL COMMENT '需求取消时间',
`develop_time` datetime NOT NULL COMMENT '开始开发时间',
`submit_test_time` datetime NOT NULL COMMENT '提交测试时间',
`wait_online_time` datetime NOT NULL COMMENT '等待上线时间',
`online_time` datetime NOT NULL COMMENT '上线时间',
`wish_time` datetime NOT NULL COMMENT '预计上线时间',
`wish_origin_time` datetime NOT NULL COMMENT '预计原型图给出时间',
`jira_url` varchar(1000) NOT NULL COMMENT 'jira对应的url',
`status` int(11) NOT NULL,
`critical` tinyint(3) NOT NULL DEFAULT '2' COMMENT '1 低 绿 2 中 黄 3 高 红',
`server_code` text NOT NULL COMMENT '该功能点对应的服务端代码位置',
`possible_effect` text NOT NULL COMMENT '该功能点的可能影响的功能',
`self_test_content` text NOT NULL COMMENT '自测内容',
`self_test_problem` text NOT NULL COMMENT '自测中发现的问题',
`branch` varchar(200) NOT NULL,
`issue_type` int(11) NOT NULL,
`device_type` varchar(100) NOT NULL COMMENT '1.web 2.安卓pad 3.安卓手机 4.iOS',
`test_problem` text NOT NULL COMMENT '测试发现的问题',
`test_use_case` text NOT NULL COMMENT '测试用例',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
CREATE TABLE `zt_issue_status` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`ctime` datetime NOT NULL COMMENT '创建时间',
`mtime` datetime NOT NULL COMMENT '修改时间',
`status` int(11) NOT NULL COMMENT '状态码',
`description` varchar(100) NOT NULL COMMENT '状态描述',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
CREATE TABLE `zt_issue_type` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`ctime` datetime NOT NULL,
`mtime` datetime NOT NULL,
`name` varchar(100) NOT NULL COMMENT 'issue的类型',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
CREATE TABLE `zt_itoa_domainname_info` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`gmt_create` datetime NOT NULL DEFAULT '1970-01-01 12:00:00' COMMENT 'Row的插入时间',
`gmt_modified` datetime NOT NULL DEFAULT '1970-01-01 12:00:00' COMMENT 'Row最后一次修改时间',
`is_deleted` char(1) NOT NULL DEFAULT 'N' COMMENT '域名当前状态:N代表正在使用;Y代表已经被删除',
`domainname` varchar(40) NOT NULL DEFAULT '#' COMMENT '域名,如confluence.weichedao.com',
`extend_desc` varchar(256) NOT NULL DEFAULT '#' COMMENT '备注信息',
`nginx_id` int(10) unsigned DEFAULT '0' COMMENT '域名配置在哪台Nginx上,0表示未占用',
`env_type` varchar(10) NOT NULL DEFAULT '#' COMMENT '环境分级:生产、预发布、测试,一般与Nginx的环境分级保持一致',
`online_time` datetime NOT NULL DEFAULT '1970-01-01 12:00:00' COMMENT '域名上线时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `zt_itoa_ecs_info` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'PK',
`hostname` varchar(40) NOT NULL DEFAULT '#' COMMENT '主机名,对用Linux上的hostname的输出',
`gmt_create` datetime NOT NULL DEFAULT '1970-01-01 12:00:00' COMMENT 'Row的插入时间',
`gmt_modified` datetime NOT NULL DEFAULT '1976-01-01 12:00:00' COMMENT 'Row最后一次修改时间',
`is_deleted` char(1) NOT NULL DEFAULT 'N' COMMENT 'ECS当前状态:N代表正在使用;Y代表已经被删除',
`extend_desc` varchar(256) NOT NULL DEFAULT '#' COMMENT '该主机的描述信息',
`env_type` varchar(10) NOT NULL DEFAULT '#' COMMENT '环境分级:生产、预发布、测试',
`eth0` varchar(20) NOT NULL DEFAULT '#' COMMENT '内网IP地址,在ECS上,eth0是内网IP的interface',
`eth1` varchar(20) NOT NULL DEFAULT '#' COMMENT '外网IP地址,在ECS上,eth1是外网IP的interface',
`configuration` varchar(64) NOT NULL DEFAULT '#' COMMENT 'ECS主机基本配置,主要包含CPU核数、内存大小、数据盘、带宽等。',
`position` varchar(4) NOT NULL DEFAULT '#' COMMENT '对应阿里云的可用区,每个可用区对应的是一个物理机房',
`os` varchar(20) NOT NULL DEFAULT 'CentOS 6.5' COMMENT '操作系统,包含具体的版本号。如CentOS 6.5',
`ssh_port` varchar(10) NOT NULL DEFAULT '22222' COMMENT 'SSH的端口,公司内部大部分机器的端口都为22222',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
CREATE TABLE `zt_itoa_mysql_info` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`gmt_create` datetime NOT NULL DEFAULT '1970-01-01 12:00:00' COMMENT 'Row的插入时间',
`gmt_modified` datetime NOT NULL DEFAULT '1970-01-01 12:00:00' COMMENT 'Row最后一次修改时间',
`is_deleted` char(1) NOT NULL DEFAULT 'N' COMMENT 'MySQL实例当前状态:N代表正在使用;Y代表已经被删除',
`extend_desc` varchar(256) NOT NULL DEFAULT '#' COMMENT '备注信息',
`ecs_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'MySQL实例安装在哪台ECS机器上',
`env_type` varchar(10) NOT NULL DEFAULT '#' COMMENT '环境分级:生产、预发布、测试',
`port` int(11) unsigned NOT NULL DEFAULT '3306' COMMENT 'MySQL实例的启动端口,默认为3306',
`inst_role` varchar(10) DEFAULT 'Single' COMMENT 'MySQL实例列表:Master,Slave,Single',
`master_id` int(11) unsigned DEFAULT NULL COMMENT 'MySQL实例的主实例的ID,当mysql_type=''Slave''时有效',
`version` varchar(20) NOT NULL DEFAULT '5.5.18-log' COMMENT 'MySQL实例的版本',
`basedir` varchar(64) DEFAULT NULL COMMENT 'MySQL实例的basedir路径',
`datadir` varchar(64) NOT NULL DEFAULT '/data/mysql' COMMENT 'MySQL实例的datedir路径',
`conf_path` varchar(64) NOT NULL DEFAULT '/etc/my.cnf' COMMENT 'MySQL实例的参数文件,默认为/etc/my.cnf',
`command` varchar(256) NOT NULL DEFAULT '#' COMMENT 'MySQL实例的启动关闭命令',
`schema_path` varchar(40) DEFAULT NULL COMMENT 'MySQL Schema的列表上传一个图片即可,该字段存放图片的路径',
`user_path` varchar(40) DEFAULT NULL COMMENT 'MySQL user的列表上传一个图片即可,该字段存放图片的路径',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
CREATE TABLE `zt_itoa_nginx_info` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`gmt_create` datetime NOT NULL DEFAULT '1970-01-01 12:00:00' COMMENT 'Row的插入时间',
`gmt_modified` datetime NOT NULL DEFAULT '1970-01-01 12:00:00' COMMENT 'Row最后一次修改时间',
`is_deleted` char(1) NOT NULL DEFAULT 'N' COMMENT '实例当前状态:N代表正在使用;Y代表已经被删除',
`extend_desc` varchar(256) NOT NULL DEFAULT '#' COMMENT '备注信息',
`ecs_id` int(10) unsigned DEFAULT NULL COMMENT 'Nginx实例安装在哪台ECS机器上',
`env_type` varchar(10) DEFAULT NULL COMMENT '环境分级:生产、预发布、测试',
`port` int(11) unsigned DEFAULT '80' COMMENT 'Nginx实例的启动端口,默认为HTTP的默认端口:80',
`version` varchar(20) NOT NULL DEFAULT '1.4.7' COMMENT 'Nginx版本',
`conf_path` varchar(64) NOT NULL DEFAULT '/etc/nginx/nginx.conf' COMMENT 'Nginx的主参数文件,默认为/etc/nginx/nginx.conf',
`logfile_path` varchar(64) NOT NULL DEFAULT '/var/log/nginx/' COMMENT 'Nginx的日志文件路径',
`command` varchar(256) NOT NULL DEFAULT '#' COMMENT 'Nginx实例的启动关闭命令',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `zt_itoa_redis_info` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`gmt_create` datetime NOT NULL DEFAULT '1970-01-01 12:00:00' COMMENT 'Row的插入时间',
`gmt_modified` datetime NOT NULL DEFAULT '1970-01-01 12:00:00' COMMENT 'Row最后一次修改时间',
`is_deleted` char(1) NOT NULL DEFAULT 'N' COMMENT '实例当前状态:N代表正在使用;Y代表已经被删除',
`extend_desc` varchar(256) NOT NULL DEFAULT '#' COMMENT '备注信息',
`ecs_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Redis实例安装在哪台ECS机器上',
`env_type` varchar(10) NOT NULL DEFAULT '#' COMMENT '环境分级:生产、预发布、测试',
`port` int(11) unsigned NOT NULL DEFAULT '6379' COMMENT 'Redis实例的启动端口,默认为6379',
`version` varchar(20) NOT NULL DEFAULT '2.8.19' COMMENT 'Redis版本',
`bin_path` varchar(64) NOT NULL DEFAULT '#' COMMENT 'Redis二进制文件redis-server的路径',
`logfile_path` varchar(64) NOT NULL DEFAULT '#' COMMENT 'Redis日志文件路径',
`data_path` varchar(64) NOT NULL DEFAULT '#' COMMENT 'Redis数据文件路径',
`conf_path` varchar(64) NOT NULL DEFAULT '#' COMMENT 'Redis配置文件路径',
`command` varchar(256) NOT NULL DEFAULT '#' COMMENT 'Redis实例的启动关闭命令',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `zt_itoa_tomcat_info` (
`id` int(11) unsigned NOT NULL DEFAULT '0',
`gmt_create` datetime NOT NULL DEFAULT '1970-01-01 12:00:00' COMMENT 'Row的插入时间',
`gmt_modified` datetime NOT NULL DEFAULT '1970-01-01 12:00:00' COMMENT 'Row最后一次修改时间',
`is_deleted` char(1) NOT NULL DEFAULT 'N' COMMENT '实例当前状态:N代表正在使用;Y代表已经被删除',
`extend_desc` varchar(256) NOT NULL DEFAULT '#' COMMENT '备注信息',
`ecs_id` int(10) unsigned DEFAULT '0' COMMENT '实例安装在哪台ECS机器上',
`env_type` varchar(10) NOT NULL DEFAULT '#' COMMENT '环境分级:生产、预发布、测试',
`ajp_port` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '实例的启动端口,端口依照运维组的端口分配原则实施,同一主机不允许端口冲突',
`server_port` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '实例的启动端口,端口依照运维组的端口分配原则实施,同一主机不允许端口冲突',
`shutdown_port` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '实例的启动端口,端口依照运维组的端口分配原则实施,同一主机不允许端口冲突',
`debug_port` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '实例的启动端口,端口依照运维组的端口分配原则实施,同一主机不允许端口冲突',
`ssl_port` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '实例的启动端口,端口依照运维组的端口分配原则实施,同一主机不允许端口冲突',
`version` varchar(20) DEFAULT NULL COMMENT '软件版本',
`online_time` datetime NOT NULL DEFAULT '1970-01-01 12:00:00' COMMENT '上线时间',
`base_path` varchar(64) NOT NULL DEFAULT '#' COMMENT 'tomcat的目录,tomcat一般都是解压缩安装,所有的文件都在主目录下',
`command` varchar(256) NOT NULL DEFAULT '#' COMMENT '实例的启动关闭命令',
`domainname_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'tomcat实例关联到的域名,可以是公网域名,也可以是IP地址代表的域名',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `zt_itoa_user_admin` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`gmt_create` datetime NOT NULL DEFAULT '1970-01-01 12:00:00' COMMENT 'Row的插入时间',
`gmt_modified` datetime NOT NULL DEFAULT '1970-01-01 12:00:00' COMMENT 'Row最后一次修改时间',
`is_deleted` char(1) DEFAULT 'N' COMMENT '实例当前状态:N代表正在使用;Y代表已经被删除',
`user_id` int(10) unsigned DEFAULT NULL COMMENT '关联到itoa_user_info表的id字段',
`app_type` varchar(10) NOT NULL DEFAULT '#' COMMENT '用户管理的环境类别,如ecs、mysql、redis、nginx、domainname、tomcat等',
`app_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '根据app_type值的不同,关联到不同的info表',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
CREATE TABLE `zt_itoa_user_info` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`gmt_create` datetime NOT NULL DEFAULT '1970-01-01 12:00:00' COMMENT 'Row的插入时间',
`gmt_modified` datetime NOT NULL DEFAULT '1970-01-01 12:00:00' COMMENT 'Row最后一次修改时间',
`is_deleted` char(1) NOT NULL DEFAULT 'N' COMMENT '实例当前状态:N代表正在使用;Y代表已经被删除',
`user_name` varchar(10) NOT NULL DEFAULT '#' COMMENT '用户的姓名,关联到saint表的user_info',
`staff_no` varchar(10) NOT NULL DEFAULT '#' COMMENT '工号',
`role` tinyint(3) unsigned DEFAULT '0' COMMENT '角色:1代表运维管理员,只有这个角色有编辑权限;0代表其它,有查看权限,默认为0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `zt_special_user_dept` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`gmt_create` datetime NOT NULL COMMENT '创建时间,入库时间',
`creator` int(11) NOT NULL COMMENT '创建人ID',
`gmt_modified` datetime DEFAULT NULL COMMENT '更新时间',
`modifier` int(11) NOT NULL COMMENT '更新人ID',
`is_deleted` char(1) NOT NULL DEFAULT 'N' COMMENT '是否删除,Y删除,N未删除',
`user_id` int(11) DEFAULT NULL COMMENT '用户id',
`dept` varchar(100) DEFAULT NULL COMMENT '部门',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='特殊人员部门表';
Loading...
Report
Report success
We will send you the feedback within 2 working days through the letter!
Please fill in the reason for the report carefully. Provide as detailed a description as possible.
Please select a report type
Cancel
Send
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

About

超级B
No labels
MIT
Use MIT
Cancel

Releases

No release

Contributors

All

Activities

can not load any more
Edit
About
Homepage
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/tonitech/superb.git
git@gitee.com:tonitech/superb.git
tonitech
superb
superb
master
Going to Help Center

Search

Comment
Repository Report
Back to the top
Login prompt
This operation requires login to the code cloud account. Please log in before operating.
Go to login
No account. Register

AltStyle によって変換されたページ (->オリジナル) /