摘 要
本系统具有团购系统所具有的用户管理,商品检索,商品分类,订单处理,商品管理,板块管理等功能。
具体来说,商家具有管理商品的权限,在使用商家的对应功能之前需要首先进行注册。商家的属性包括商家 ID,商家邮箱,商家名称,商家电话、商家评价、商家地址、以及对应商家账户的登陆密码。同一个商家可以销售多种商品,但是同一种商品只能由同一个商家进行销售。商品属性包括商品 ID,商品名称,商品价格,商品原价、商品描述,商品所属板块以及生产日期。在使用相关团购功能之前需要首先进行注册,成为会员之后可以参与团购。用户的属性包括用户名、邮箱、用户密码、用户地址、注册日期、用户电话、用户头像等信息。一个用户可以参与多个团购订单,每个团购订单可以包括多个用户。此外,每个团购订单还包含多个商品,每个商品可以包含在多个团购订单之中。团购订单的属性包括订单 ID,成交时间,团购期限,团购开始时间,团购参与人数, 团购人数上限,团购订单的价格以及订单类型。每次成交都会记录成交的时间。用户在完成订单之后,可以对对应订单中商品的商家进行评价。评论的属性包括评论 ID,评论星级,评论内容,评论时间。分类板块的属性包括板块 ID 和板块名称,每个商品和订单只对应一个板块。管理员负责进行板块的管理,其属性包括管理员 ID 和管理员密码, 每个管理员只负责一个板块,同一个板块可以由多个管理员进行管理。
关键词:团购;网站;商城;PHP;MySQL
Abstract
This system has the functions of user management, commodity retrieval, commodity classification, order processing, commodity management and plate management of the group buying system.
Specifically, the merchants have the authority to manage the goods, and they need to register first before using the corresponding functions of the merchants.The attributes of merchants include merchant ID, merchant email, merchant name, merchant phone, merchant evaluation, merchant address, and the login password of the corresponding merchant account.The same merchant can sell a variety of goods, but the same goods can only be sold by the same merchant.Commodity attributes include commodity ID, commodity name, commodity price, original price, commodity description, plate of the commodity and production date.Before using the relevant group buying function, you need to register first, and you can participate in the group buying after becoming a member.User attributes include user name, mailbox, user password, user address, registration date, user phone, user profile picture and other information.One user can participate in multiple group purchase orders, and each group purchase order can include multiple users.In addition, each group purchase order also contains multiple items, and each item can be included in multiple group purchase orders.The attributes of group purchase orders include order ID, transaction time, group purchase period, group purchase start time, the number of group purchase participants, the maximum number of group purchase participants, the price of group purchase orders and the order type.The time of the transaction will be recorded.After completing the order, users can evaluate the merchants of the goods in the corresponding order.Atats for reviews include review ID, review star, review content, review time.The attributes of classified plate include plate ID and plate name, and each commodity and order only correspond to only one plate.Administrator is responsible for the management of plates, whose attributes include administrator ID and administrator password. Each administrator is only responsible for one plate, and the same plate can be managed by multiple administrators.
Key words: group purchase; website; mall; PHP; MySQL
目录
目录
摘 要 1
Abstract 2
目录 3
1) 商家评分更新触发器(shop_star_update) 10 5
2) 用户年龄检查触发器(check_user_age) 11 5
3) 商品详情检查触发器(check_item_num) 11 5
4) 订单价格更新触发器(order_price_update) 11 5
5) 用户支出统计触发器(user_outcome_adapter) 12 5
六、 实现技术 12 5
七、 运行实例 12 5
八、 源程序简要说明 22 5
九、 收获和体会 24 5
一、 实现环境 6
1. 前端 6
2. 后端 6
二、 系统功能结构图 6
1. 系统功能需求分析 6
2. 系统功能结构设计图 7
三、 基本表定义 7
1. 管理员信息表(admin) 8
2. 用户信息表(users) 8
3. 商户信息表(shop) 8
4. 商品信息表(item) 9
5. 类别信息表(class) 9
6. 团购订单表(orders) 9
7. 评论信息表(comment) 10
8. 订单详情表(iteminorder) 10
1. 数据流图 11
2. 数据字典 14
二、 数据库系统概念模式 17
三、 数据库系统的逻辑模式 18
1. 数据库逻辑模式 18
2. 索引信息 20
四、 安全性设计 20
1. 前端 20
2. 后端 20
五、 存储过程、触发器和函数 21
1. 存储过程 21
1) 商品数量设置存储过程(setrest) 21
2) 商品评价统计存储过程(itemcomment) 21
3) 订单管理存储过程(orderManage) 22
2. 触发器 23
1) 商品评分更新触发器(item_star_update) 23
2) 商家评分更新触发器(shop_star_update) 23
3) 用户年龄检查触发器(check_user_age) 24
4) 商品详情检查触发器(check_item_num) 24
5) 订单价格更新触发器(order_price_update) 24
6) 用户支出统计触发器(user_outcome_adapter) 25
六、 实现技术 25
1. 前端技术 25
2. 后端技术 25
七、 运行实例 25
1. 主页页面 26
2. 登陆界面 26
3. 商品页面 27
4. 用户信息预览及设置 29
5. 商家管理页面 30
6. 搜索页面 32
7. 购物订单 33
8. 管理员登陆及管理接口 34
八、 源程序简要说明 35
1. 前端程序 35
2. 后端程序 36
九、 收获和体会 37