源码 10r
源码+运行部署 30r
源码+运行部署+使用答疑 50r
功能描述
前后端分离是基于Spring Boot的综合性B2C电商平台
实现内容
用数据库建立的信息库,设计、编写管理系统,实现对产品信息输入、查询、统计等管
理功能。
用户功能模块:分为我的账户、商品展示、购物车三分功能小模块。
我的账户,会员登录会员注册
修改个人信息,发表评论,我的订单,商品展示,浏览商品信息,商品信息分类检索,购物车
,查看购物车,修改购物车信息,删除购物信息,提交购物订单 用户管理
商品管理,订单管理,公告管理, 后台销售情况分析
运行截图
关键代码
package com.xq.tmall.entity;
import java.util.List;
/**
* 类型实体类
*
*/
public class Category {
private Integer category_id/*类型ID*/;
private String category_name/*类型名称*/;
private String category_image_src/*类型图片路径*/;
private List<Property> propertyList/*属性列表*/;
private List<Product> productList/*产品集合*/;
private List<List<Product>> complexProductList/*产品二维集合*/;
@Override
public String toString() {
return "Category{" +
"category_id=" + category_id +
", category_name='" + category_name + '\'' +
", category_image_src='" + category_image_src + '\'' +
'}';
}
public Category(){
}
public Category(Integer category_id, String category_name, String category_image_src) {
this.category_id = category_id;
this.category_name = category_name;
this.category_image_src = category_image_src;
}
public Integer getCategory_id() {
return category_id;
}
public Category setCategory_id(Integer category_id) {
this.category_id = category_id;
return this;
}
public String getCategory_name() {
return category_name;
}
public Category setCategory_name(String category_name) {
this.category_name = category_name;
return this;
}
public String getCategory_image_src() {
return category_image_src;
}
public Category setCategory_image_src(String category_image_src) {
this.category_image_src = category_image_src;
return this;
}
public List<List<Product>> getComplexProductList() {
return complexProductList;
}
public Category setComplexProductList(List<List<Product>> productList) {
this.complexProductList = productList;
return this;
}
public List<Property> getPropertyList() {
return propertyList;
}
public Category setPropertyList(List<Property> propertyList) {
this.propertyList = propertyList;
return this;
}
public List<Product> getProductList() {
return productList;
}
public Category setProductList(List<Product> productList) {
this.productList = productList;
return this;
}
}