|
|
@ -816,7 +816,7 @@ CREATE TABLE `t_user` ( |
|
|
|
|
|
|
|
-- ---------------------------- |
|
|
|
-- Table structure for t_video_verify |
|
|
|
-- ---------------------------- |
|
|
|
-- ---------------------------- |
|
|
|
DROP TABLE IF EXISTS `t_video_verify`; |
|
|
|
CREATE TABLE `t_video_verify` ( |
|
|
|
`id` int(11) NOT NULL AUTO_INCREMENT, |
|
|
@ -831,3 +831,53 @@ CREATE TABLE `t_video_verify` ( |
|
|
|
) ENGINE = InnoDB AUTO_INCREMENT = 87 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '视频审核表' ROW_FORMAT = Dynamic; |
|
|
|
|
|
|
|
SET FOREIGN_KEY_CHECKS = 1; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- 导师表添加所属平台字段 同步维基的字段 2121.6.15 |
|
|
|
ALTER TABLE t_researchers |
|
|
|
ADD `platform` tinyint(1) DEFAULT 1 COMMENT '所属平台(0-全部,1-创新平台,2-孵化平台,3-产业平台)', |
|
|
|
ADD `sex` tinyint(1) DEFAULT 1 COMMENT '性别(0-女,1-男)', |
|
|
|
ADD `intro` varchar(500) DEFAULT '' COMMENT '简介', |
|
|
|
ADD `resume` int(11) DEFAULT 0 COMMENT '简历', |
|
|
|
ADD `teacher_photo` int(11) DEFAULT 0 COMMENT '导师照片', |
|
|
|
ADD `offer` int(11) DEFAULT 0 COMMENT '聘书(照片)', |
|
|
|
ADD `service_case` varchar(2000) DEFAULT '' COMMENT '服务案例': |
|
|
|
|
|
|
|
|
|
|
|
-- 2121.6.16 企业信息填报Enterprise information |
|
|
|
DROP TABLE IF EXISTS `t_enterprise_information`; |
|
|
|
CREATE TABLE `t_enterprise_information` ( |
|
|
|
`id` int(11) NOT NULL AUTO_INCREMENT, |
|
|
|
`place_id` int(11) NULL DEFAULT 0 COMMENT 't_place_apply表的id(企业id)', |
|
|
|
`practical_number` int(11) DEFAULT 0 COMMENT '实用本年期初数', |
|
|
|
`practical_increase` int(11) DEFAULT 0 COMMENT '实用当年新增', |
|
|
|
`invention_number` int(11) DEFAULT 0 COMMENT '发明本年期初书', |
|
|
|
`invention_increase` int(11) DEFAULT 0 COMMENT '发明当年新增', |
|
|
|
`soft_number` int(11) DEFAULT 0 COMMENT '软著本年期初数', |
|
|
|
`soft_increase` int(11) DEFAULT 0 COMMENT '软著当年新增', |
|
|
|
`brand_number` int(11) DEFAULT 0 COMMENT '商标本年期初书', |
|
|
|
`brand_increase` int(11) DEFAULT 0 COMMENT '商标当年新增', |
|
|
|
`total_number` int(11) DEFAULT 0 COMMENT '人员总数', |
|
|
|
`science_personnel` int(11) DEFAULT 0 COMMENT '科技人员', |
|
|
|
`collegeabove_number` int(11) DEFAULT 0 COMMENT '大专以上人数', |
|
|
|
`total_assets` decimal(20,2) DEFAULT NULL COMMENT '资产总额', |
|
|
|
`operating_income` decimal(20,2) DEFAULT NULL COMMENT '营业收入', |
|
|
|
`profit_total` decimal(20,2) DEFAULT NULL COMMENT '利润总额', |
|
|
|
`taxes` decimal(20,2) DEFAULT NULL COMMENT '上缴税金', |
|
|
|
`research_costs` decimal(20,2) DEFAULT NULL COMMENT '研发费用', |
|
|
|
`agent_service` int(11) DEFAULT 0 COMMENT '代理代办', |
|
|
|
`policy_push` int(11) DEFAULT 0 COMMENT '政策推送', |
|
|
|
`double_activities` int(11) DEFAULT 0 COMMENT '双创活动', |
|
|
|
`policy_guidance` int(11) DEFAULT 0 COMMENT '政策辅导', |
|
|
|
`project_declaration` int(11) DEFAULT 0 COMMENT '项目申报', |
|
|
|
`time` int(11) DEFAULT 0 COMMENT '时间', |
|
|
|
`quarter` tinyint(1) DEFAULT 0 COMMENT '季度(1-第一季度2-第二季度3-第三季度4-第四季度)', |
|
|
|
`created_at` timestamp NOT NULL DEFAULT current_timestamp, |
|
|
|
`update_at` timestamp NOT NULL DEFAULT current_timestamp, |
|
|
|
`rec_status` tinyint(1) UNSIGNED NULL DEFAULT 0 COMMENT '状态 0正常 1禁用 2删除', |
|
|
|
PRIMARY KEY (`id`) USING BTREE, |
|
|
|
INDEX `t_place_apply`(`place_id`) USING BTREE |
|
|
|
) ENGINE = InnoDB AUTO_INCREMENT = 87 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '企业统计信息填报表' ROW_FORMAT = Dynamic; |
|
|
|