水果生鲜超市管理系统数据字典
时间: 2023-10-27 13:08:14 浏览: 106
超市管理系统数据字典.doc
1. 顾客(Customer)
- ID:唯一标识符,整型
- 姓名(Name):文本型
- 手机号(Telephone):文本型
- 地址(Address):文本型
2. 商品(Goods)
- ID:唯一标识符,整型
- 名称(Name):文本型
- 单价(Price):实数型
- 库存数量(Inventory):整型
- 分类(Category):文本型
3. 订单(Order)
- ID:唯一标识符,整型
- 顾客ID(CustomerID):整型
- 商品ID(GoodsID):整型
- 数量(Quantity):整型
- 总价(TotalPrice):实数型
- 下单时间(OrderTime):日期时间型
4. 库存(Inventory)
- ID:唯一标识符,整型
- 商品ID(GoodsID):整型
- 数量(Quantity):整型
5. 优惠活动(Promotion)
- ID:唯一标识符,整型
- 名称(Name):文本型
- 折扣率(Discount):实数型
- 开始时间(StartTime):日期时间型
- 结束时间(EndTime):日期时间型
6. 支付方式(Payment)
- ID:唯一标识符,整型
- 名称(Name):文本型
7. 购物车(ShoppingCart)
- ID:唯一标识符,整型
- 顾客ID(CustomerID):整型
- 商品ID(GoodsID):整型
- 数量(Quantity):整型
8. 销售记录(SalesRecord)
- ID:唯一标识符,整型
- 商品ID(GoodsID):整型
- 销售数量(SalesQuantity):整型
- 销售金额(SalesAmount):实数型
- 销售时间(SalesTime):日期时间型
阅读全文