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.

104 lines
5.3 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';
  27. ALTER TABLE `cim_chat_file` MODIFY COLUMN `is_join` tinyint(255);
  28. CREATE TABLE `cim_limit_management_detail` (
  29. `id` bigint(20) NOT NULL,
  30. `limit_management_id` bigint(20) NOT NULL,
  31. `min_percentage` decimal(15,3) DEFAULT NULL COMMENT '区间最小',
  32. `max_percentage` decimal(15,3) DEFAULT NULL COMMENT '区间最大',
  33. `overdue_date_range` varchar(100) DEFAULT '' COMMENT '逾期日期区间',
  34. `processed_by` varchar(50) DEFAULT '' COMMENT '处理人',
  35. `handling_method` varchar(1) DEFAULT '' COMMENT '处理方式',
  36. `processed_by_type` varchar(1) DEFAULT '' COMMENT '处理人类型',
  37. `user_id` varchar(50) DEFAULT '' COMMENT '用户id',
  38. `tenantsid` bigint(20) DEFAULT NULL COMMENT '租户sid',
  39. `tenant_id` varchar(20) DEFAULT NULL,
  40. `create_by` varchar(50) DEFAULT NULL,
  41. `create_date` datetime DEFAULT NULL,
  42. `modified_by` varchar(50) DEFAULT NULL,
  43. `modified_date` datetime DEFAULT NULL,
  44. `version` int(11) DEFAULT NULL,
  45. `deleted` tinyint(255) DEFAULT NULL,
  46. PRIMARY KEY (`id`)
  47. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  48. CREATE TABLE `cim_payment_details` (
  49. `id` bigint(20) NOT NULL,
  50. `receivable_no` varchar(100) DEFAULT '' COMMENT '应收单号',
  51. `receivable_non` varchar(100) DEFAULT '' COMMENT '应收序号',
  52. `customer_no` varchar(100) DEFAULT '' COMMENT '客户编号',
  53. `customer_name` varchar(100) DEFAULT '' COMMENT '客户名称',
  54. `status` varchar(100) DEFAULT '' COMMENT '状态',
  55. `sales_order` varchar(100) DEFAULT '' COMMENT '销售单号',
  56. `sales_order_number` varchar(100) DEFAULT '' COMMENT '销售单序号',
  57. `contract_no` varchar(100) DEFAULT '' COMMENT '合同编号',
  58. `sku_code` varchar(100) DEFAULT '' COMMENT '品号',
  59. `sku_name` varchar(100) DEFAULT '' COMMENT '品名',
  60. `sku_spec` varchar(100) DEFAULT '' COMMENT '规格',
  61. `contacts` varchar(100) DEFAULT '' COMMENT '联系人',
  62. `contact_information` varchar(100) DEFAULT '' COMMENT '联系方式',
  63. `salesman_assistant` varchar(100) DEFAULT '' COMMENT '业务助理',
  64. `salesman` varchar(100) DEFAULT '' COMMENT '业务员',
  65. `salesman_boss` varchar(100) DEFAULT '' COMMENT '业务主管',
  66. `produce_boss` varchar(100) DEFAULT '' COMMENT '生产主管',
  67. `work_no` varchar(100) DEFAULT '' COMMENT '工单单号',
  68. `amount_tax` decimal(15,3) DEFAULT NULL COMMENT '含税金额',
  69. `price_tax` decimal(15,3) DEFAULT NULL COMMENT '含税单价',
  70. `quantity` decimal(15,3) DEFAULT NULL COMMENT '数量',
  71. `overdue_days` int(11) DEFAULT NULL COMMENT '逾期天数',
  72. `tenantsid` bigint(20) DEFAULT NULL COMMENT '租户sid',
  73. `tenant_id` varchar(20) DEFAULT NULL,
  74. `create_by` varchar(50) DEFAULT NULL,
  75. `create_date` datetime DEFAULT NULL,
  76. `modified_by` varchar(50) DEFAULT NULL,
  77. `modified_date` datetime DEFAULT NULL,
  78. `version` int(11) DEFAULT NULL,
  79. `deleted` tinyint(255) DEFAULT NULL,
  80. PRIMARY KEY (`id`)
  81. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  82. CREATE TABLE `cim_limit_management` (
  83. `id` bigint(20) NOT NULL,
  84. `min_percentage` decimal(15,3) DEFAULT NULL COMMENT '区间最小',
  85. `max_percentage` decimal(15,3) DEFAULT NULL COMMENT '区间最大',
  86. `class_interval_name` varchar(100) DEFAULT '' COMMENT '级距名称',
  87. `class_interval_no` varchar(100) DEFAULT '' COMMENT '序号',
  88. `tenantsid` bigint(20) DEFAULT NULL COMMENT '租户sid',
  89. `tenant_id` varchar(20) DEFAULT NULL,
  90. `create_by` varchar(50) DEFAULT NULL,
  91. `create_date` datetime DEFAULT NULL,
  92. `modified_by` varchar(50) DEFAULT NULL,
  93. `modified_date` datetime DEFAULT NULL,
  94. `version` int(11) DEFAULT NULL,
  95. `deleted` tinyint(255) DEFAULT NULL,
  96. PRIMARY KEY (`id`)
  97. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;