install.sql 42.7 KB
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 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744
CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_achievement` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL DEFAULT '' COMMENT '名称',
  `config` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1销售(目标)2回款(目标)',
  `type` tinyint(2) NOT NULL DEFAULT '0' COMMENT '2部门3员工',
  `type_id` int(11) NOT NULL DEFAULT '0' COMMENT '对象ID',
  `year` int(8) NOT NULL COMMENT '年',
  `january` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '一月',
  `february` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '二月',
  `march` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '三月',
  `april` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '四月',
  `may` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '五月',
  `june` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '六月',
  `july` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '七月',
  `august` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '八月',
  `september` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '九月',
  `october` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '十月',
  `november` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '十一月',
  `december` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '十二月',
  `yeartarget` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '年目标',
  PRIMARY KEY (`id`) USING BTREE,
  KEY `config` (`config`,`type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='业绩目标';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_business` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `customer_id` int(11) NOT NULL COMMENT '客户ID',
  `type_id` int(11) NOT NULL COMMENT '商机状态组',
  `status` int(11) NOT NULL COMMENT '销售阶段',
  `status_time` bigint(16) DEFAULT NULL COMMENT '阶段推进时间',
  `is_end` tinyint(4) NOT NULL DEFAULT '0' COMMENT '0洽淡中,1成交2失败3无效',
  `next_time` bigint(16) DEFAULT NULL COMMENT '下次联系时间',
  `name` varchar(255) NOT NULL DEFAULT '' COMMENT '商机名称',
  `money` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '商机金额',
  `total_price` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '产品总金额',
  `deal_time` bigint(16) DEFAULT NULL COMMENT '预计成交日期',
  `discount_rate` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '整单折扣',
  `remark` text COMMENT '备注',
  `create_user_id` int(10) NOT NULL COMMENT '创建人ID',
  `owner_user_id` int(10) NOT NULL COMMENT '负责人ID',
  `ro_user_id` varchar(500) NOT NULL DEFAULT '' COMMENT '只读权限',
  `rw_user_id` varchar(500) NOT NULL DEFAULT '' COMMENT '读写权限',
  `create_time` bigint(16) NOT NULL COMMENT '创建时间',
  `update_time` bigint(16) NOT NULL COMMENT '更新时间',
  `delete_time` bigint(16) DEFAULT NULL COMMENT '删除时间',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COMMENT='商机表';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_business_contacts` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `contacts_id` int(10) NOT NULL,
  `business_id` int(10) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COMMENT='商机联系人表表';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_business_product` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `business_id` int(11) DEFAULT NULL COMMENT '商机id',
  `product_id` int(11) NOT NULL COMMENT '产品编号',
  `price` decimal(10,2) DEFAULT '0.00' COMMENT '单价',
  `nums` int(11) DEFAULT '0' COMMENT '数量',
  `subtotal` decimal(10,2) DEFAULT NULL COMMENT '小计',
  `remarks` varchar(255) DEFAULT NULL COMMENT '备注',
  `create_time` bigint(16) DEFAULT NULL COMMENT '创建时间',
  `update_time` bigint(16) DEFAULT NULL COMMENT '更新时间',
  `delete_time` bigint(16) DEFAULT NULL COMMENT '删除时间',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COMMENT='商机产品关联表';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_cloudcall` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `admin_id` int(11) NOT NULL,
  `from_exten` varchar(20) NOT NULL COMMENT '坐席工号',
  `exten_type` enum('gateway','sip','local') DEFAULT 'local' COMMENT '接听方式Local为“手机”',
  `cloud` varchar(20) DEFAULT 'tycc100' COMMENT '外呼引擎',
  `create_time` bigint(16) DEFAULT NULL,
  `update_time` bigint(16) DEFAULT NULL,
  `status` tinyint(4) DEFAULT '1' COMMENT '1正常0关闭',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COMMENT='云呼坐席管理';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_cloudcall_log` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) DEFAULT NULL COMMENT '联系人名称',
  `source` varchar(50) DEFAULT NULL COMMENT '来源类型如customer,clues',
  `source_id` int(11) DEFAULT NULL COMMENT '来源数据ID',
  `admin_id` int(11) DEFAULT NULL,
  `cloud` varchar(20) DEFAULT NULL COMMENT '外呼引擎',
  `from_exten` varchar(20) DEFAULT NULL COMMENT '坐席工号',
  `create_time` bigint(16) DEFAULT NULL,
  `update_time` bigint(16) DEFAULT NULL,
  `status` tinyint(4) DEFAULT '0' COMMENT '0数据未回传-1未接通1已同步2同步失败',
  `call_no` varchar(20) DEFAULT NULL COMMENT '呼叫号码',
  `called_no` varchar(20) DEFAULT NULL COMMENT '被呼叫号码',
  `record_file` varchar(1000) DEFAULT NULL COMMENT '录音文件',
  `call_time_length` int(11) DEFAULT NULL COMMENT '呼叫时长(秒)',
  `exten_type` varchar(20) DEFAULT NULL COMMENT '接听方式',
  `action_id` varchar(100) DEFAULT NULL COMMENT '呼叫事件ID',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COMMENT='呼叫记录';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_clues` (
  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `name` varchar(50) NOT NULL COMMENT '线索',
  `mobile` varchar(50) NOT NULL DEFAULT '' COMMENT '手机',
  `telephone` varchar(50) NOT NULL DEFAULT '' COMMENT '电话',
  `status` int(10) NOT NULL DEFAULT '0' COMMENT '状态1-无效线索,0未转客户,1转成客户',
  `customer_id` int(10) NOT NULL DEFAULT '0' COMMENT '转成客户id',
  `change_time` bigint(16) DEFAULT NULL COMMENT '转客户时间',
  `level` int(11) NOT NULL DEFAULT '0' COMMENT '客户级别ID',
  `industry` int(11) NOT NULL DEFAULT '0' COMMENT '客户行业ID',
  `tags` varchar(255) DEFAULT '' COMMENT ' 客户标签',
  `source` int(11) NOT NULL DEFAULT '0' COMMENT '客户来源ID',
  `remark` text COMMENT '备注',
  `create_user_id` int(11) NOT NULL COMMENT '创建人ID',
  `owner_user_id` int(11) NOT NULL COMMENT '负责人ID',
  `user_id` int(11) DEFAULT '0' COMMENT '前台用户ID',
  `ro_user_id` varchar(500) NOT NULL DEFAULT '' COMMENT '只读权限',
  `rw_user_id` varchar(500) NOT NULL DEFAULT '' COMMENT '读写权限',
  `province` int(11) DEFAULT '0' COMMENT '省份id',
  `city` int(11) DEFAULT '0' COMMENT '城市ID',
  `area` int(11) DEFAULT '0' COMMENT '区域ID',
  `detail_address` varchar(255) NOT NULL DEFAULT '' COMMENT '详细地址',
  `next_time` bigint(16) DEFAULT NULL COMMENT '下次联系时间',
  `follow_time` bigint(16) DEFAULT NULL COMMENT '最后跟进时间',
  `create_time` bigint(16) NOT NULL COMMENT '创建时间',
  `update_time` bigint(16) NOT NULL COMMENT '更新时间',
  `delete_time` bigint(16) DEFAULT NULL COMMENT '删除时间',
  `collect_time` bigint(16) DEFAULT NULL COMMENT '领取时间',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=202 DEFAULT CHARSET=utf8mb4 COMMENT='线索表';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_contract` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `customer_id` int(11) NOT NULL COMMENT '客户ID',
  `business_id` int(11) NOT NULL COMMENT '商机ID',
  `contacts_id` int(11) NOT NULL COMMENT '客户签约人(联系人ID)',
  `source_id` int(11) DEFAULT '0' COMMENT '来源ID',
  `name` varchar(50) NOT NULL DEFAULT '' COMMENT '合同名称',
  `number` varchar(255) NOT NULL DEFAULT '' COMMENT '合同编号',
  `order_time` bigint(16) DEFAULT NULL COMMENT '下单时间',
  `money` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '合同金额',
  `total_price` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '产品总金额',
  `return_money` decimal(10,2) DEFAULT '0.00' COMMENT '已收到款项',
  `discount_rate` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '整单折扣',
  `check_status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '0待审核、1审核中、2审核通过、3审核未通过',
  `flow_id` int(11) NOT NULL DEFAULT '0' COMMENT '审核流程ID',
  `step_id` int(11) NOT NULL DEFAULT '0' COMMENT '审核步骤ID',
  `check_admin_id` varchar(255) NOT NULL DEFAULT '' COMMENT '已经审批人IDs',
  `flow_admin_id` varchar(255) NOT NULL DEFAULT '' COMMENT '当前需要审批的人',
  `start_time` bigint(16) DEFAULT NULL COMMENT '开始时间',
  `end_time` bigint(16) DEFAULT NULL COMMENT '结束时间',
  `order_admin_id` int(11) DEFAULT NULL COMMENT '公司签约人',
  `remark` text COMMENT '备注',
  `create_user_id` int(10) NOT NULL COMMENT '创建人ID',
  `owner_user_id` int(10) NOT NULL DEFAULT '0' COMMENT '负责人ID',
  `ro_user_id` varchar(500) NOT NULL DEFAULT '' COMMENT '只读权限',
  `rw_user_id` varchar(500) NOT NULL DEFAULT '' COMMENT '读写权限',
  `next_time` bigint(16) DEFAULT NULL COMMENT '下次联系时间',
  `create_time` bigint(16) NOT NULL COMMENT '创建时间',
  `update_time` bigint(16) DEFAULT NULL COMMENT '更新时间',
  `delete_time` bigint(16) DEFAULT NULL COMMENT '删除时间',
  `expire_handle` tinyint(11) DEFAULT '0' COMMENT '0合同过期未处理1已续签2不再合作',
  `invoice_money` decimal(10,2) DEFAULT '0.00' COMMENT '已开票金额',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COMMENT='合同表';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_contract_order` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键ID',
  `orderid` varchar(100) DEFAULT NULL COMMENT '订单ID',
  `user_id` int(10) unsigned DEFAULT '0' COMMENT '会员ID',
  `amount` double(10,2) unsigned DEFAULT '0.00' COMMENT '订单金额',
  `payamount` double(10,2) unsigned DEFAULT '0.00' COMMENT '支付金额',
  `paytype` varchar(50) DEFAULT NULL COMMENT '支付类型',
  `paytime` bigint(16) DEFAULT NULL COMMENT '支付时间',
  `ip` varchar(50) DEFAULT NULL COMMENT 'IP地址',
  `useragent` varchar(255) DEFAULT NULL COMMENT 'UserAgent',
  `memo` varchar(255) DEFAULT NULL COMMENT '备注',
  `createtime` bigint(16) DEFAULT NULL COMMENT '添加时间',
  `updatetime` bigint(16) DEFAULT NULL COMMENT '更新时间',
  `status` enum('created','paid','expired') DEFAULT 'created' COMMENT '状态',
  `receivables_id` int(11) DEFAULT NULL COMMENT '回款ID',
  `contract_id` int(11) DEFAULT NULL COMMENT '合同ID',
  `ordertype` enum('renew','pay') DEFAULT NULL COMMENT '订单类型',
  `renew_day` int(11) DEFAULT '0' COMMENT '续费天数(总)',
  `number` int(11) DEFAULT '1' COMMENT '下单数量',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='支付表';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_contract_plan` (
  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `customer_id` int(11) NOT NULL COMMENT '客户 ID',
  `contract_id` int(11) NOT NULL COMMENT '合同ID',
  `return_money` decimal(10,2) DEFAULT '0.00' COMMENT '已回款金额',
  `money` decimal(10,2) NOT NULL COMMENT '回款金额',
  `remind_day` tinyint(4) DEFAULT '1' COMMENT '提前提醒天数',
  `remind` tinyint(1) DEFAULT '0' COMMENT '1已经提醒',
  `status` tinyint(4) DEFAULT '0' COMMENT '-1到期未回款,0进行中,2已回款',
  `receivables_id` int(11) DEFAULT NULL COMMENT '回款时关联的ID',
  `remarks` varchar(255) DEFAULT NULL COMMENT '备注',
  `plan_time` bigint(16) DEFAULT NULL COMMENT '计划回款时间',
  `create_time` bigint(16) DEFAULT NULL COMMENT '创建时间',
  `update_time` bigint(16) DEFAULT NULL COMMENT '更新时间',
  `account_id` int(11) DEFAULT NULL COMMENT '收款账户ID',
  `admin_id` int(11) DEFAULT NULL COMMENT '创建者',
  `name` varchar(50) DEFAULT NULL COMMENT '计划名称',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8mb4 COMMENT='回款计划';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_contract_product` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `contract_id` int(11) NOT NULL COMMENT '合同ID',
  `product_id` int(11) NOT NULL COMMENT '产品ID',
  `name` varchar(100) NOT NULL COMMENT '产品名称',
  `specification` varchar(80) NOT NULL COMMENT '规格',
  `sku` varchar(80) DEFAULT NULL COMMENT 'sku',
  `prop` text COMMENT '商品属性',
  `price` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '产品单价',
  `sales_price` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '销售价格',
  `nums` int(10) NOT NULL DEFAULT '0' COMMENT '数量',
  `discount` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '折扣',
  `subtotal` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '小计(折扣后价格)',
  `unit` varchar(50) NOT NULL DEFAULT '' COMMENT '单位',
  `remarks` varchar(255) DEFAULT NULL COMMENT '备注',
  `create_time` bigint(16) DEFAULT NULL,
  `update_time` bigint(16) DEFAULT NULL,
  `delete_time` bigint(16) DEFAULT NULL COMMENT '删除时间',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8mb4 COMMENT='合同产品关系表';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_contract_receivables` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `number` varchar(100) NOT NULL DEFAULT '' COMMENT '回款编号',
  `customer_id` int(11) NOT NULL COMMENT '客户ID',
  `contract_id` int(11) NOT NULL COMMENT '合同ID',
  `return_time` bigint(16) DEFAULT NULL COMMENT '回款日期',
  `account_id` int(10) NOT NULL COMMENT '收款账户ID',
  `money` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '回款金额',
  `check_status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '0待审核、1审核中、2审核通过、3审核未通过',
  `flow_id` int(11) NOT NULL DEFAULT '0' COMMENT '审核流程ID',
  `step_id` int(11) NOT NULL DEFAULT '0' COMMENT '审核步骤排序ID',
  `check_admin_id` varchar(255) NOT NULL DEFAULT '' COMMENT '审批人IDs',
  `flow_admin_id` varchar(255) NOT NULL DEFAULT '' COMMENT '流程审批人ID',
  `remark` text COMMENT '备注',
  `create_user_id` int(10) NOT NULL COMMENT '创建人ID',
  `owner_user_id` int(10) NOT NULL DEFAULT '0' COMMENT '负责人ID',
  `order_admin_id` int(11) DEFAULT NULL COMMENT '合同签约人',
  `create_time` bigint(16) NOT NULL COMMENT '创建时间',
  `update_time` bigint(16) NOT NULL COMMENT '更新时间',
  `delete_time` bigint(16) DEFAULT NULL COMMENT '删除时间',
  `pay_status` tinyint(4) DEFAULT '0' COMMENT '在线支付状态1已付款0未付款',
  `pay_type` tinyint(4) DEFAULT '1' COMMENT '收款方式1默认2在线收款3续费',
  `pay_token` varchar(200) DEFAULT NULL COMMENT '访问支付的token',
  `plan_id` int(11) NOT NULL DEFAULT '0' COMMENT '关联回款计划',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COMMENT='回款表';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_customer` (
  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `name` varchar(50) NOT NULL COMMENT '客户名称',
  `mobile` varchar(50) NOT NULL DEFAULT '' COMMENT '手机',
  `telephone` varchar(50) NOT NULL DEFAULT '' COMMENT '电话',
  `deal_status` int(10) NOT NULL DEFAULT '0' COMMENT '成交状态0未成交1成交',
  `deal_time` bigint(16) DEFAULT NULL COMMENT '成交时间',
  `is_lock` tinyint(1) DEFAULT '0' COMMENT '1锁定',
  `level` int(11) NOT NULL DEFAULT '0' COMMENT '客户级别ID',
  `industry` int(11) NOT NULL DEFAULT '0' COMMENT '客户行业ID',
  `tags` varchar(255) DEFAULT '' COMMENT ' 客户标签',
  `source` int(11) NOT NULL DEFAULT '0' COMMENT '客户来源ID',
  `remark` text COMMENT '备注',
  `create_user_id` int(11) NOT NULL COMMENT '创建人ID',
  `owner_user_id` int(11) NOT NULL COMMENT '负责人ID',
  `user_id` int(11) DEFAULT '0' COMMENT '前台用户ID',
  `ro_user_id` varchar(500) NOT NULL DEFAULT '' COMMENT '只读权限',
  `rw_user_id` varchar(500) NOT NULL DEFAULT '' COMMENT '读写权限',
  `province` int(11) DEFAULT '0' COMMENT '省份id',
  `city` int(11) DEFAULT '0' COMMENT '城市ID',
  `area` int(11) DEFAULT '0' COMMENT '区域ID',
  `detail_address` varchar(255) NOT NULL DEFAULT '' COMMENT '详细地址',
  `lng` double(14,11) DEFAULT NULL COMMENT '地理位置经度',
  `lat` double(14,11) DEFAULT NULL COMMENT '地理位置维度',
  `next_time` bigint(16) NOT NULL COMMENT '下次联系时间',
  `follow_time` bigint(16) DEFAULT NULL COMMENT '最后跟进时间',
  `create_time` bigint(16) NOT NULL COMMENT '创建时间',
  `update_time` bigint(16) NOT NULL COMMENT '更新时间',
  `delete_time` bigint(16) DEFAULT NULL COMMENT '删除时间',
  `collect_time` bigint(16) DEFAULT NULL COMMENT '领取时间',
  `weixin` varchar(50) DEFAULT '' COMMENT '微信',
  `qq` int(11) DEFAULT NULL COMMENT 'QQ',
  `purchase_total` decimal(18,2) DEFAULT '0.00' COMMENT '消费总额',
  `purchase_times` int(10) DEFAULT '0' COMMENT '消费次数',
  `follow_status` enum('1','2','3','4','5','0') DEFAULT '1' COMMENT '跟进状态',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=114 DEFAULT CHARSET=utf8mb4 COMMENT='客户表';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_customer_contacts` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `customer_id` int(11) NOT NULL COMMENT '客户ID',
  `name` varchar(50) NOT NULL DEFAULT '' COMMENT '姓名',
  `mobile` varchar(50) NOT NULL DEFAULT '' COMMENT '手机',
  `birthday` date DEFAULT NULL COMMENT '生日',
  `telephone` varchar(50) NOT NULL DEFAULT '' COMMENT '电话',
  `wechat` varchar(50) DEFAULT '' COMMENT '微信号',
  `email` varchar(255) NOT NULL DEFAULT '' COMMENT '电子邮箱',
  `decision` tinyint(4) NOT NULL DEFAULT '-1' COMMENT '是否关键决策人1是0不是-1未知',
  `post` varchar(255) NOT NULL DEFAULT '' COMMENT '职务',
  `sex` tinyint(4) NOT NULL DEFAULT '-1' COMMENT '性别0女1男-1未知',
  `detail_address` varchar(255) NOT NULL DEFAULT '' COMMENT '地址',
  `remark` text COMMENT '备注',
  `ro_user_id` varchar(500) NOT NULL DEFAULT '' COMMENT '只读权限',
  `rw_user_id` varchar(500) NOT NULL DEFAULT '' COMMENT '读写权限',
  `create_user_id` int(11) NOT NULL COMMENT '创建人ID',
  `owner_user_id` int(11) NOT NULL COMMENT '负责人ID',
  `next_time` bigint(16) DEFAULT NULL COMMENT '下次联系时间',
  `create_time` bigint(16) NOT NULL COMMENT '创建时间',
  `update_time` bigint(16) NOT NULL COMMENT '更新时间',
  `delete_time` bigint(16) DEFAULT NULL COMMENT '删除时间',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=114 DEFAULT CHARSET=utf8mb4 COMMENT='联系人表';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_fields` (
  `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
  `source` varchar(30) DEFAULT '' COMMENT '来源',
  `name` char(30) DEFAULT '' COMMENT '名称',
  `type` varchar(30) DEFAULT '' COMMENT '类型',
  `title` varchar(30) DEFAULT '' COMMENT '标题',
  `content` text COMMENT '内容',
  `defaultvalue` varchar(100) DEFAULT '' COMMENT '默认值',
  `rule` varchar(100) DEFAULT '' COMMENT '验证规则',
  `msg` varchar(100) DEFAULT '0' COMMENT '错误消息',
  `ok` varchar(100) DEFAULT '0' COMMENT '成功消息',
  `tip` varchar(100) DEFAULT '' COMMENT '提示消息',
  `decimals` tinyint(1) DEFAULT NULL COMMENT '小数点',
  `length` mediumint(8) DEFAULT NULL COMMENT '长度',
  `minimum` smallint(6) DEFAULT NULL COMMENT '最小数量',
  `maximum` smallint(6) unsigned NOT NULL DEFAULT '0' COMMENT '最大数量',
  `extend` varchar(255) DEFAULT '' COMMENT '扩展信息',
  `setting` varchar(1500) DEFAULT '' COMMENT '配置信息',
  `weigh` int(10) NOT NULL DEFAULT '0' COMMENT '排序',
  `createtime` bigint(16) DEFAULT NULL COMMENT '添加时间',
  `updatetime` bigint(16) DEFAULT NULL COMMENT '更新时间',
  `isorder` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否可排序',
  `iscontribute` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否可投稿',
  `islist` tinyint(1) DEFAULT '0' COMMENT '是否显示在列表',
  `isfilter` tinyint(1) NOT NULL DEFAULT '0' COMMENT '筛选',
  `status` enum('normal','hidden') NOT NULL COMMENT '状态',
  PRIMARY KEY (`id`),
  KEY `model` (`source`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COMMENT='自定义字段表';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_flow` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL COMMENT '审批流名称',
  `config` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1固定审批0授权审批',
  `types` enum('contract','invoice','receivables') NOT NULL COMMENT '关联对象',
  `types_id` int(11) NOT NULL DEFAULT '0' COMMENT '对象ID(如审批类型ID)',
  `group_ids` varchar(500) NOT NULL DEFAULT '' COMMENT '组别ID(0为全部)',
  `admin_ids` varchar(500) NOT NULL DEFAULT '' COMMENT '员工ID',
  `remark` varchar(500) NOT NULL DEFAULT '' COMMENT '流程说明',
  `create_time` bigint(16) NOT NULL COMMENT '创建时间',
  `update_time` bigint(16) NOT NULL COMMENT '更新时间',
  `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '状态 1启用,0禁用',
  `delete_time` bigint(16) DEFAULT NULL COMMENT '删除时间',
  `weigh` int(11) DEFAULT '0' COMMENT '权重',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COMMENT='审批流程表';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_flow_log` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `flow_id` int(11) NOT NULL COMMENT '审批流程ID',
  `types` enum('contract','invoice','receivables') NOT NULL COMMENT '关联对象',
  `types_id` int(11) NOT NULL DEFAULT '0' COMMENT '对象ID(如审批类型ID)',
  `admin_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '审核人',
  `nickname` varchar(30) DEFAULT '' COMMENT '审核人名称',
  `remark` varchar(200) DEFAULT '' COMMENT '审核意见',
  `is_end` tinyint(4) NOT NULL DEFAULT '0' COMMENT '1审核结束',
  `status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '0审核未通过,1审核通过',
  `create_time` bigint(16) DEFAULT NULL COMMENT '操作时间',
  PRIMARY KEY (`id`),
  KEY `name` (`nickname`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COMMENT='审核日志表';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_flow_step` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `flow_id` int(11) NOT NULL COMMENT '审批流程ID',
  `type` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1上级管理员,2指定用户(任意一人)',
  `admin_ids` varchar(500) NOT NULL DEFAULT '' COMMENT '审批人ID (使用逗号隔开) ,1,2,',
  `relation` tinyint(1) NOT NULL DEFAULT '1' COMMENT '审批流程关系(1并2或)',
  `create_time` bigint(16) NOT NULL COMMENT '创建时间',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='审批步骤表';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_invoice` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `contract_id` int(11) NOT NULL COMMENT '合同ID',
  `customer_id` int(11) NOT NULL COMMENT '客户ID',
  `invoice_body` varchar(50) DEFAULT NULL COMMENT '开票主体',
  `content` varchar(255) NOT NULL COMMENT '开票内容',
  `invoice_name` varchar(100) NOT NULL DEFAULT '' COMMENT '发票抬头',
  `invoice_issue` tinyint(4) NOT NULL DEFAULT '1' COMMENT '抬头类型1企业2个人3事业单位',
  `invoice_type` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1增普2增专',
  `register_no` varchar(50) DEFAULT NULL COMMENT '统一社会信用代码',
  `bank_name` varchar(50) DEFAULT NULL COMMENT '开户行名称',
  `bank_no` varchar(50) DEFAULT NULL COMMENT '开户账号',
  `money` decimal(10,2) DEFAULT '0.00' COMMENT '发票税前金额',
  `tax_rate` int(10) NOT NULL DEFAULT '0' COMMENT '税率',
  `remarks` varchar(255) DEFAULT NULL COMMENT '备注',
  `email` varchar(50) DEFAULT NULL COMMENT '接收发票邮箱',
  `user_name` varchar(20) DEFAULT NULL COMMENT '收件人',
  `user_phone` varchar(20) DEFAULT NULL COMMENT '收件手机',
  `user_address` varchar(200) DEFAULT NULL COMMENT '邮寄地址',
  `files` varchar(255) DEFAULT NULL COMMENT '开票附件',
  `create_time` bigint(16) DEFAULT NULL COMMENT '创建时间',
  `update_time` bigint(16) DEFAULT NULL COMMENT '更新时间',
  `create_admin_id` int(11) DEFAULT NULL COMMENT '创建人',
  `invoice_admin_id` int(11) DEFAULT NULL COMMENT '开票人',
  `check_status` tinyint(4) DEFAULT '0' COMMENT '0待审核、1审核中、2审核通过、3审核未通过',
  `flow_id` int(11) DEFAULT NULL COMMENT '审核流程ID',
  `step_id` int(11) DEFAULT NULL COMMENT '审核步骤ID',
  `check_admin_id` varchar(255) DEFAULT NULL COMMENT '已经审批人IDs',
  `flow_admin_id` varchar(255) DEFAULT NULL COMMENT '当前需要审批的人',
  `status` tinyint(4) DEFAULT '0' COMMENT '状态0未开票1开票中2已开票3开票失败',
  `delete_time` bigint(16) DEFAULT NULL COMMENT '删除时间',
  PRIMARY KEY (`id`),
  KEY `contract_id` (`contract_id`),
  KEY `customer_i` (`customer_id`),
  KEY `invoice_admin_id` (`invoice_admin_id`),
  KEY `create_admin_id` (`create_admin_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COMMENT='发票表';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_notices` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `admin_id` int(11) NOT NULL COMMENT '管理员ID',
  `user_id` int(11) NOT NULL COMMENT '会员ID',
  `customer_id` int(11) NOT NULL COMMENT '客户ID',
  `engine` varchar(20) DEFAULT NULL COMMENT '通知引擎',
  `status` tinyint(4) DEFAULT '0' COMMENT '0失败1成功',
  `content` longtext NOT NULL COMMENT '内容',
  `create_time` bigint(16) DEFAULT NULL,
  `update_time` bigint(16) DEFAULT NULL,
  `msg` text COMMENT '信息',
  `event_id` varchar(100) DEFAULT NULL COMMENT '发送事件',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COMMENT='通知日志';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_operatelog` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `admin_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '管理员ID',
  `customer_id` int(11) NOT NULL DEFAULT '0' COMMENT '客户ID',
  `contract_id` int(11) NOT NULL DEFAULT '0' COMMENT '合同ID',
  `receivable_id` int(11) NOT NULL DEFAULT '0' COMMENT '回款ID',
  `nickname` varchar(50) DEFAULT NULL COMMENT '姓名',
  `username` varchar(50) DEFAULT '' COMMENT '管理员账号',
  `url` varchar(1500) DEFAULT '' COMMENT '操作页面',
  `title` varchar(255) DEFAULT '' COMMENT '日志标题',
  `content` longtext NOT NULL COMMENT '内容',
  `ip` varchar(50) DEFAULT '' COMMENT 'IP',
  `useragent` varchar(255) DEFAULT '' COMMENT 'User-Agent',
  `create_time` bigint(16) DEFAULT NULL COMMENT '操作时间',
  PRIMARY KEY (`id`),
  KEY `admin_id` (`admin_id`),
  KEY `customer_id` (`customer_id`),
  KEY `contract_id` (`contract_id`),
  KEY `receivable_id` (`receivable_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5762 DEFAULT CHARSET=utf8mb4 COMMENT='操作日志表';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_product` (
  `id` int(10) NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `name` varchar(80) NOT NULL COMMENT '商品名称',
  `product_type_id` int(10) NOT NULL COMMENT '商品类型',
  `specification` varchar(80) NOT NULL COMMENT '规格',
  `sku` varchar(80) DEFAULT NULL COMMENT 'sku',
  `prop` mediumtext COMMENT '商品属性',
  `inventory` int(10) NOT NULL DEFAULT '0' COMMENT '商品库存',
  `min_warning` int(10) DEFAULT NULL COMMENT '最低库存预警',
  `max_warning` int(10) DEFAULT NULL COMMENT '最高库存预警',
  `price` decimal(10,2) DEFAULT '0.00' COMMENT '价格',
  `remark` varchar(200) DEFAULT NULL COMMENT '备注',
  `create_time` bigint(16) DEFAULT NULL COMMENT '创建时间',
  `update_time` bigint(16) DEFAULT NULL COMMENT '更新时间',
  `delete_time` bigint(16) DEFAULT NULL COMMENT '删除时间',
  `product_unit_id` int(10) NOT NULL COMMENT '单位',
  `unit` varchar(50) NOT NULL COMMENT '单位值',
  `status` int(4) NOT NULL DEFAULT '1' COMMENT '1正常0下架',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COMMENT='商品信息';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_product_type` (
  `id` int(10) NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `name` varchar(100) NOT NULL COMMENT '分类名称',
  `prop` mediumtext COMMENT '分类属性',
  `create_time` bigint(16) DEFAULT NULL COMMENT '创建时间',
  `update_time` bigint(16) DEFAULT NULL COMMENT '更新时间',
  `delete_time` bigint(16) DEFAULT NULL COMMENT '删除时间',
  `pid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '父id',
  `image` varbinary(100) DEFAULT NULL COMMENT '图片',
  `weigh` int(10) NOT NULL DEFAULT '0' COMMENT '权重',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COMMENT='商品分类';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_product_unit` (
  `id` int(10) NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `name` varchar(50) NOT NULL COMMENT '单位名称',
  `create_time` bigint(16) DEFAULT NULL COMMENT '创建时间',
  `update_time` bigint(16) DEFAULT NULL COMMENT '更新时间',
  `delete_time` bigint(16) DEFAULT NULL COMMENT '删除时间',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COMMENT='商品单位';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_qywx_contacts` (
  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `corp_id` varchar(120) NOT NULL COMMENT '企业ID',
  `external_userid` varchar(250) NOT NULL COMMENT '外部联系人的userid',
  `name` varchar(120) NOT NULL COMMENT '外部联系人的名称',
  `avatar` varchar(250) DEFAULT NULL COMMENT '外部联系人头像',
  `unionid` varchar(250) DEFAULT NULL COMMENT '微信unionid',
  `follow_user` text COMMENT '企业负责该联系人成员',
  `corp_full_name` varchar(100) DEFAULT NULL COMMENT '企业的主体名称',
  `corp_name` varchar(50) DEFAULT NULL COMMENT '企业的简称',
  `type` tinyint(4) DEFAULT NULL COMMENT '类型,1微信用户,2企业微信用户',
  `gender` tinyint(4) NOT NULL DEFAULT '0' COMMENT '性别 0-未知 1-男性 2-女性',
  `status` varchar(30) NOT NULL DEFAULT '' COMMENT '状态',
  `weigh` int(11) NOT NULL DEFAULT '0' COMMENT '权重',
  `create_time` bigint(16) DEFAULT NULL COMMENT '创建时间',
  `update_time` bigint(16) unsigned DEFAULT NULL COMMENT '更新时间',
  `customer_id` int(11) DEFAULT NULL COMMENT '关联本地客户联系人ID',
  PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COMMENT='企业微信客户';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_qywx_user` (
  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `admin_id` int(11) NOT NULL COMMENT '关联fa后台账户id',
  `corp_id` varchar(120) NOT NULL COMMENT '企业ID',
  `userid` varchar(250) NOT NULL COMMENT '成员userid',
  `name` varchar(250) NOT NULL COMMENT '成员名称',
  `mobile` varchar(20) DEFAULT NULL COMMENT '成员手机号码',
  `email` varchar(250) DEFAULT NULL COMMENT '成员邮箱',
  `avatar` varchar(250) DEFAULT NULL COMMENT '头像url',
  `gender` tinyint(1) NOT NULL DEFAULT '0' COMMENT '性别。0表示未定义,1表示男性,2表示女性',
  `position` varchar(250) DEFAULT NULL COMMENT '职务信息',
  `qr_code` varchar(250) DEFAULT NULL COMMENT '客户联系二维码',
  `status` varchar(30) NOT NULL DEFAULT '' COMMENT '激活状态: 1=已激活,2=已禁用,4=未激活,5=退出企业',
  `weigh` int(11) NOT NULL DEFAULT '0' COMMENT '权重',
  `createtime` bigint(16) DEFAULT NULL COMMENT '创建时间',
  `updatetime` bigint(16) unsigned DEFAULT NULL COMMENT '更新时间',
  PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COMMENT='企业微信员工';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_record` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `types` enum('business','clues','customer') NOT NULL DEFAULT 'customer' COMMENT '关联类型(customer跟进,business商机跟进,clues线索)',
  `types_id` int(11) NOT NULL COMMENT '类型ID(根据types变动而变动)',
  `content` text COMMENT '跟进内容',
  `record_type` int(11) NOT NULL DEFAULT '0' COMMENT '跟进类型',
  `next_time` bigint(16) DEFAULT NULL COMMENT '下次联系时间',
  `create_time` bigint(16) DEFAULT NULL COMMENT '创建时间',
  `update_time` bigint(16) DEFAULT NULL COMMENT '更新时间',
  `create_user_id` int(11) NOT NULL COMMENT '创建人ID',
  `delete_time` bigint(16) DEFAULT NULL COMMENT '删除时间',
  `lng` double(14,11) DEFAULT NULL COMMENT '经度',
  `lat` double(14,11) DEFAULT NULL COMMENT '维度',
  PRIMARY KEY (`id`),
  UNIQUE KEY `record_id` (`id`),
  KEY `types` (`types`),
  KEY `types_id` (`types_id`),
  KEY `record_type` (`record_type`)
) ENGINE=InnoDB AUTO_INCREMENT=62 DEFAULT CHARSET=utf8mb4 COMMENT='跟进记录';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_record_files` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键id',
  `types` enum('business','clues','customer') NOT NULL DEFAULT 'customer' COMMENT '关联类型(customer客户,business商机,clues线索)',
  `types_id` int(11) NOT NULL COMMENT '类型ID(根据types变动而变动)',
  `record_id` int(11) NOT NULL COMMENT '跟进记录ID',
  `url` varchar(255) NOT NULL COMMENT '附件url',
  `create_time` bigint(16) unsigned DEFAULT NULL COMMENT '创建时间',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COMMENT='跟进文件记录表';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_scene` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `types` varchar(50) NOT NULL COMMENT '分类',
  `name` varchar(50) NOT NULL COMMENT '场景名称',
  `admin_id` int(10) NOT NULL COMMENT '用户ID',
  `weigh` int(10) NOT NULL DEFAULT '1' COMMENT '权重',
  `data` mediumtext COMMENT '属性值',
  `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1系统0自定义',
  `bydata` varchar(50) NOT NULL DEFAULT '' COMMENT '系统参数',
  `create_time` bigint(16) DEFAULT NULL COMMENT '创建时间',
  `update_time` bigint(16) DEFAULT NULL COMMENT '更新时间',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COMMENT='场景';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_setting` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `key` varchar(100) NOT NULL COMMENT '设置项标示',
  `describe` varchar(255) NOT NULL DEFAULT '' COMMENT '设置项描述',
  `values` longtext NOT NULL COMMENT '设置内容(json格式)',
  `update_time` bigint(16) unsigned DEFAULT NULL COMMENT '更新时间',
  `create_time` bigint(16) DEFAULT NULL COMMENT '创建时间',
  `status` tinyint(1) DEFAULT '1' COMMENT '1正常0禁用',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COMMENT='设置记录表';

CREATE TABLE IF NOT EXISTS `__PREFIX__facrm_tag` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) DEFAULT '' COMMENT '标签名称',
  `type` varchar(20) DEFAULT 'customer' COMMENT '类型',
  `nums` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '数量',
  `createtime` bigint(16) DEFAULT NULL COMMENT '添加时间',
  `updatetime` bigint(16) DEFAULT NULL COMMENT '更新时间',
  `status` enum('normal','hidden') DEFAULT 'normal' COMMENT '状态',
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`) USING BTREE,
  KEY `nums` (`nums`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='标签表';

--
-- 1.0.1
-- 添加名称字段user_id
--
ALTER TABLE `__PREFIX__facrm_customer` ADD COLUMN `user_id` int(11) NULL DEFAULT '' COMMENT '前台用户ID' AFTER `owner_user_id`;


--
-- 1.0.3
-- 更改表编码和字段编码和增加字段
--
ALTER TABLE `__PREFIX__facrm_customer` DEFAULT CHARACTER SET utf8mb4,
MODIFY COLUMN `name`  varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '客户名称' ,
MODIFY COLUMN `remark`  text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注' ;

ALTER TABLE `__PREFIX__facrm_customer_contacts` DEFAULT CHARACTER SET utf8mb4,
MODIFY COLUMN `name`  varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '姓名' ,
MODIFY COLUMN `remark`  text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注' ;

ALTER TABLE `__PREFIX__facrm_record` DEFAULT CHARACTER SET utf8mb4,
MODIFY COLUMN `content`  text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '跟进内容' ;

ALTER TABLE `__PREFIX__facrm_setting` ADD COLUMN `status` tinyint(1) NULL DEFAULT '1' COMMENT '状态' AFTER `create_time`;

--
-- 2.0.0
-- 更改表编码和字段编码和增加字段
--
ALTER TABLE `__PREFIX__facrm_record`
MODIFY COLUMN `types`  enum('business','clues','customer') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT 'customer' COMMENT '关联类型(customer跟进,business商机跟进,clues线索)' AFTER `id`;


ALTER TABLE `__PREFIX__facrm_record_files`
MODIFY COLUMN `types`  enum('business','clues','customer') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT 'customer' COMMENT '关联类型(customer客户,business商机,clues线索)' AFTER `id`;


--
-- 插入一些必须数据
--
INSERT INTO __PREFIX__facrm_flow VALUES ('1', '合同审批', '0', 'contract', '0', '', '', '', '1610787200', '1610787643', '1', null,1);
INSERT INTO __PREFIX__facrm_flow VALUES ('2', '回款审批', '0', 'receivables', '0', '', '', '', '1610947811', '1618023534', '1', null,2);
INSERT INTO __PREFIX__facrm_flow VALUES ('3', '发票申请', '0', 'invoice', '0', '', '', '', '1610947811', '1618023534', '1', null,3);
INSERT INTO __PREFIX__facrm_fields VALUES ('1', 'customer', 'weixin', 'string', '微信', 'value1|title1\r\nvalue2|title2', '', '', '', '', '', '0', '50', '0', '0', '', '{\"table\":\"\",\"conditions\":\"\",\"key\":\"\",\"value\":\"\"}', '22', '1614587422', '1614664611', '0', '0', '1', '1', 'normal');
INSERT INTO __PREFIX__facrm_fields VALUES ('2', 'customer', 'qq', 'number', 'QQ', 'value1|title1\r\nvalue2|title2', '', '', '', '', '', '0', '11', '0', '0', '', '{\"table\":\"\",\"conditions\":\"\",\"key\":\"\",\"value\":\"\"}', '25', '1614587924', '1614667071', '0', '1', '0', '1', 'normal');

INSERT INTO __PREFIX__facrm_scene VALUES ('1', 'customer', '全部客户', '0', '1', null, '1', '', '0', '0');
INSERT INTO __PREFIX__facrm_scene VALUES ('2', 'customer', '我的客户', '0', '1', null, '1', '', '0', '0');
INSERT INTO __PREFIX__facrm_scene VALUES ('3', 'customer', '下属客户', '0', '1', null, '1', '', '0', '0');
INSERT INTO __PREFIX__facrm_scene VALUES ('4', 'contacts', '全部', '0', '1', null, '1', '', '0', '0');
INSERT INTO __PREFIX__facrm_scene VALUES ('5', 'contacts', '我的', '0', '1', null, '1', '', '0', '0');
INSERT INTO __PREFIX__facrm_scene VALUES ('6', 'contacts', '下属', '0', '1', null, '1', '', '0', '0');
INSERT INTO __PREFIX__facrm_scene VALUES ('7', 'business', '全部商机', '0', '1', null, '1', '', '0', '0');
INSERT INTO __PREFIX__facrm_scene VALUES ('8', 'business', '我的商机', '0', '1', null, '1', '', '0', '0');
INSERT INTO __PREFIX__facrm_scene VALUES ('9', 'business', '下属商机', '0', '1', null, '1', '', '0', '0');
INSERT INTO __PREFIX__facrm_scene VALUES ('10', 'clues', '全部线索', '0', '1', null, '1', '', '0', '0');
INSERT INTO __PREFIX__facrm_scene VALUES ('11', 'clues', '我的线索', '0', '1', null, '1', '', '0', '0');
INSERT INTO __PREFIX__facrm_scene VALUES ('12', 'clues', '下属线索', '0', '1', null, '1', '', '0', '0');

--
-- 2.0.2
-- 添加来源字段
--
ALTER TABLE `__PREFIX__facrm_contract`
ADD COLUMN `source_id`  int(11) NULL DEFAULT 0 COMMENT '来源ID' AFTER `contacts_id`;

--
-- 2.0.5
-- 增加云呼方式
--
ALTER TABLE `__PREFIX__facrm_cloudcall`
MODIFY COLUMN `exten_type`  enum('gateway','sip','local') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT 'local' COMMENT '接听方式Local为“手机”' AFTER `from_exten`;

--
-- 2.0.6
-- 增加线上收款
--
ALTER TABLE `__PREFIX__facrm_record`
ADD COLUMN `lng`  double(14,11) NULL COMMENT '经度' AFTER `delete_time`,
ADD COLUMN `lat`  double(14,11) NULL COMMENT '维度' AFTER `lng`;

ALTER TABLE `__PREFIX__facrm_contract_receivables`
ADD COLUMN `pay_status`  tinyint(4) NULL DEFAULT 0 COMMENT '在线支付状态1已付款0未付款' AFTER `delete_time`,
ADD COLUMN `pay_type`  tinyint(4) NULL DEFAULT 1 COMMENT '收款方式1默认2在线收款3续费' AFTER `pay_status`,
ADD COLUMN `pay_token`  varchar(200) NULL COMMENT '访问支付的token' AFTER `pay_type`;



--
-- 2.0.7
-- 发票
--
ALTER TABLE `__PREFIX__facrm_flow`
ADD COLUMN `weigh`  int(11) NULL DEFAULT 0 COMMENT '权重' AFTER `delete_time`,
MODIFY COLUMN `types`  enum('contract','invoice','receivables') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '关联对象' AFTER `config`;

ALTER TABLE `__PREFIX__facrm_flow_log`
MODIFY COLUMN `types`  enum('contract','invoice','receivables') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '关联对象' AFTER `flow_id`;

ALTER TABLE `__PREFIX__facrm_contract`
ADD COLUMN `invoice_money`  decimal(10,2) NULL DEFAULT 0.00 COMMENT '已开票金额' ;

--
-- 2.0.8
-- 消费总额和次数
--
ALTER TABLE `__PREFIX__facrm_customer`
ADD COLUMN `purchase_total`  decimal(18,2) NULL DEFAULT 0 COMMENT '消费总额' AFTER `collect_time`,
ADD COLUMN `purchase_times`  int(10) NULL DEFAULT 0 COMMENT '消费次数' AFTER `purchase_total`;

-- 2.0.10
INSERT INTO `__PREFIX__facrm_scene` (`id`, `types`, `name`, `admin_id`, `create_time`, `update_time`) VALUES (13,'customer', '分享给他人', '0', '0', '0');
INSERT INTO `__PREFIX__facrm_scene` (`id`,`types`, `name`, `admin_id`, `create_time`, `update_time`) VALUES (14,'customer', '分享给我的', '0', '0', '0');

--2.1.0
-- 增加自定义跟进状态
ALTER TABLE `__PREFIX__facrm_customer`
ADD COLUMN  `follow_status` enum('1','2','3','4','5','0') DEFAULT '1' COMMENT '跟进状态';
ALTER TABLE `__PREFIX__facrm_clues`
ADD COLUMN  `follow_status` enum('1','2','3','4','5','0') DEFAULT '1' COMMENT '跟进状态';

--2.2.5
-- 增加回款计划
ALTER TABLE `__PREFIX__facrm_contract_receivables`
ADD COLUMN `plan_id`  int(11) NOT NULL DEFAULT 0 COMMENT '关联回款计划' AFTER `pay_token`;

INSERT INTO `__PREFIX__facrm_fields` (  `id`,`source`,`name`,`type`,`title`,`content`,`defaultvalue`,`rule` ,`msg`,`ok`,`tip`,`decimals`,`length`,`minimum`,`maximum`,`extend`,`setting`,`weigh`,`createtime`,`updatetime`,`isorder`,`iscontribute`,`islist`,`isfilter`,`status`) VALUES (3, 'customer', 'follow_status', 'select', '跟进状态', '1|新客\r\n2|待再次沟通\r\n3|有意向\r\n4|已加微信\r\n5|转商机\r\n0|无效', '1', '', '', '', '', '0', '4', '0', '0', '', '{\"table\":\"\",\"conditions\":\"\",\"key\":\"\",\"value\":\"\"}', '6', '1694851354', '1694851354', '0', '0', '0', '0', 'normal');

INSERT INTO `__PREFIX__facrm_fields` (  `id`,`source`,`name`,`type`,`title`,`content`,`defaultvalue`,`rule` ,`msg`,`ok`,`tip`,`decimals`,`length`,`minimum`,`maximum`,`extend`,`setting`,`weigh`,`createtime`,`updatetime`,`isorder`,`iscontribute`,`islist`,`isfilter`,`status`) VALUES (4, 'clues', 'follow_status', 'select', '跟进状态', '1|新客\r\n2|待再次沟通\r\n3|有意向\r\n4|已加微信\r\n5|转商机\r\n0|无效', '1', '', '', '', '', '0', '4', '0', '0', '', '{\"table\":\"\",\"conditions\":\"\",\"key\":\"\",\"value\":\"\"}', '6', '1694851354', '1694851354', '0', '0', '0', '0', 'normal');