You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
1.7 KiB

1 year ago
  1. alter table cps_question_info Add column measures_from varchar(520) null default '' AFTER `knowledge_accumulation`, Add column accumulation_from varchar(520) null default '' AFTER `knowledge_accumulation`;
  2. CREATE TABLE `cim_chat_file` (
  3. `id` bigint(20) NOT NULL COMMENT 'id',
  4. `question` varchar(255) DEFAULT '' COMMENT '问题描述',
  5. `feedback_person` varchar(255) DEFAULT '' COMMENT '反馈人',
  6. `feedback_date` datetime DEFAULT NULL COMMENT '反馈时间',
  7. `urgency` int(1) DEFAULT NULL COMMENT '紧急程度1:低,2中,3高',
  8. `question_source` int(1) DEFAULT NULL COMMENT '问题来源',
  9. `question_type` int(1) DEFAULT NULL COMMENT '问题分类',
  10. `question_complete_by` varchar(255) DEFAULT '' COMMENT '问题处理人',
  11. `complete_date` datetime DEFAULT NULL COMMENT '处理时间',
  12. `complete_explain` varchar(255) DEFAULT '' COMMENT '处理说明',
  13. `is_join` int(1) DEFAULT NULL COMMENT '是否加入知识库0否,1是',
  14. `tab_status` int(1) DEFAULT NULL COMMENT '状态',
  15. `tenantsid` bigint(20) DEFAULT NULL COMMENT '租户sid',
  16. `tenant_id` varchar(20) DEFAULT NULL COMMENT '租户id',
  17. `create_by` varchar(50) DEFAULT NULL COMMENT '创建者',
  18. `create_date` datetime DEFAULT NULL COMMENT '创建时间',
  19. `modified_by` varchar(50) DEFAULT NULL COMMENT '修改者',
  20. `modified_date` datetime DEFAULT NULL COMMENT '修改时间',
  21. `version` int(11) DEFAULT '0' COMMENT '版本',
  22. `deleted` tinyint(255) DEFAULT '0' COMMENT '逻辑删除标志,默认0',
  23. PRIMARY KEY (`id`)
  24. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  25. alter table cim_chat_file Add column question_no varchar(32) null default '' COMMENT '问题单号';
  26. alter table cim_chat_file Add column user_id varchar(32) null default '' COMMENT '用户id';