还是接着之前的内容,我把代码贴出来
数据库
drop table if exists ap_customer;
CREATE TABLE `ap_customer` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键id',
`name` varchar(50) DEFAULT NULL COMMENT '客户名称',
`company_address` varchar(255) DEFAULT NULL COMMENT '公司地址',
`person` varchar(20) DEFAULT NULL COMMENT '联系人',
`phone` varchar(15) DEFAULT NULL COMMENT '手机',
`profession` varchar(30) DEFAULT NULL COMMENT '行业',
`province` varchar(10) DEFAULT NULL COMMENT '省份',
`city` varchar(10) DEFAULT NULL COMMENT '城市',
`user_id` bigint(20) DEFAULT NULL COMMENT '负责人id',
`customer_state
本文档详细介绍了使用SpringBoot构建销售管理系统中客户跟进模块的全过程,包括数据库设计、后端服务的各个组件如customerFollowMapper、Service、Controller的实现,以及配置文件如mybatisplusconfig和corsconfig的设置,最后还涵盖了前端Vue.js中的router和customerFollow.vue组件。
订阅专栏 解锁全文
495

被折叠的 条评论
为什么被折叠?



