crmebPro二开文档结构
├── app //应用目录
│ ├── AppService.php //服务类(加载容器)
│ ├── ExceptionHandle.php //应用异常处理类
│ ├── Request.php //请求类
│ ├── Route.php //路由
│ ├── build.php //创建模块配置
│ ├── provider.php //容器Provider定义文件
│ ├── service.php //服务配置
│ ├── event.php //事件
│ ├── middleware.php //中间件容器
│ ├── common.php //通用函数
│ ├── common //通用模块
│ │ └── controller
│ ├── controller //控制器
│ │ ├── InstallController.php //安装控制器
│ │ ├── UpgradeController.php //升级控制器
│ │ ├── admin //后台控制器
│ │ ├── api //用户端控制器
│ │ ├── kefu //客服模块控制器
│ │ ├── out //对外接口控制器
│ │ └── store //门店控制器
│ ├── services //SERVICES层业务逻辑层
│ │ ├── BaseServices.php //SERVICES务逻辑基类
│ │ ├── activity //营销模块
│ │ ├── agent //分销模块
│ │ ├── article //文章模块
│ │ ├── coupon //优惠券模块
│ │ ├── diy //DIY模块
│ │ ├── export //表格导出模块
│ │ ├── kefu //客服模块
│ │ ├── live //直播模块
│ │ ├── message //消息模块
│ │ ├── order //订单模块
│ │ ├── other //其它模块
│ │ ├── out //对外接口
│ │ ├── pay //支付模块
│ │ ├── pc //PC端模块
│ │ ├── product //产品模块
│ │ ├── queue //队列模块
│ │ ├── serve //一号通模块
│ │ ├── shipping //运费模版模块
│ │ ├── statistic //统计模块
│ │ ├── store //门店模块
│ │ ├── system //系统配置模块
│ │ ├── user //用户模块
│ │ └── wechat //应用模块公众号、小程序
│ ├── dao //DAO层 数据持久层
│ │ ├── BaseDao.php //DAO基类
│ │ ├── activity //营销模块
│ │ ├── agent //分销模块
│ │ ├── article //文章模块
│ │ ├── coupon //优惠券模块
│ │ ├── diy //DIY模块
│ │ ├── live //直播模块
│ │ ├── order //订单模块
│ │ ├── other //其它模块 缓存、分类、城市数据、二维码、模版消息、隐私协议
│ │ ├── out //对外接口模块
│ │ ├── product //产品模块
│ │ ├── queue //队列模块和缓存模块
│ │ ├── service //客服模块
│ │ ├── shipping //运费模块模块
│ │ ├── sms //短信模块
│ │ ├── store //门店模块
│ │ ├── system //系统设置模块
│ │ ├── user //用户模块
│ │ └── wechat //应用模块公众号、小程序
│ ├── model //MODEL层数据访问层
│ │ ├── activity //营销模块
│ │ ├── agent //分销模块
│ │ ├── article //文章模块
│ │ ├── coupon //优惠券模块
│ │ ├── diy //DIY模块
│ │ ├── live //直播模块
│ │ ├── order //订单模块
│ │ ├── other //其它模块
│ │ ├── out //对外接口模块
│ │ ├── product //产品模块
│ │ ├── queue //队列模块
│ │ ├── service //客服模块
│ │ ├── shipping //运费模版模块
│ │ ├── sms //短信模块
│ │ ├── store //门店模块
│ │ ├── system //系统设置模块
│ │ ├── user //用户模块
│ │ └── wechat //应用模块
│ ├── http //中间件
│ │ └── middleware
│ │ ├── AllowOriginMiddleware.php //跨域中间件
│ │ ├── InstallMiddle