FastAdmin定制版是一款基于ThinkPHP 5.1 + Bootstrap的快速后台开发框架,专门针对电商业务场景进行了深度定制和扩展。该系统集成了完整的商城功能、验货系统、用户管理、订单处理等核心业务模块。
topthink/framework
: ThinkPHP核心框架topthink/think-queue
: 队列处理overtrue/wechat
: 微信SDKyansongda/pay
: 支付SDKphpoffice/phpspreadsheet
: Excel处理fastadminnet/fastadmin-addons
: 插件系统fa_user
: 用户基础信息fa_user_group
: 用户组fa_user_money_log
: 资金变动日志fa_user_score_log
: 积分变动日志fa_shop_order
: 订单主表fa_shop_order_goods
: 订单商品表fa_shop_order_action
: 订单操作记录fa_shop_order_aftersales
: 售后订单fa_shop_order_express
: 物流信息inspection_application
: 验货申请inspection_task
: 验货任务inspection_result
: 验货结果inspection_photo
: 验货照片fa_admin
: 管理员表fa_auth_group
: 权限组fa_auth_rule
: 权限规则fa_config
: 系统配置# 订单数据
truncate fa_shop_order;
truncate fa_shop_order_goods;
truncate fa_shop_order_action;
truncate fa_shop_order_address;
truncate fa_shop_order_action;
truncate fa_shop_order_electronics;
truncate fa_shop_order_invoice;
truncate fa_shop_order_aftersales;
truncate fa_shop_order_express;
truncate fa_shop_order_express_log;
truncate fa_shop_order_express_log;
truncate fa_shop_comment;
# 支付数据
truncate fa_shop_pay;
# 验货端数据
truncate inspection_application;
truncate inspection_task;
truncate inspection_result;
truncate inspection_photo;
# 用户数据
truncate fa_user;
truncate fa_shop_user_address;
## 清空数据SQL
truncate fa_shop_order; truncate fa_shop_order_goods; truncate fa_shop_order_action; truncate fa_shop_order_address; truncate fa_shop_order_action; truncate fa_shop_order_electronics; truncate fa_shop_order_invoice; truncate fa_shop_order_aftersales; truncate fa_shop_order_express; truncate fa_shop_order_express_log; truncate fa_shop_order_express_log; truncate fa_shop_comment;
truncate fa_shop_pay;
truncate inspection_application; truncate inspection_task; truncate inspection_result; truncate inspection_photo;
truncate fa_user; truncate fa_shop_user_address;
```