您的位置:首页 > 汽车 > 新车 > 网站名称格式_湖南企业注册app_可以发广告的平台_推广方案策略怎么写

网站名称格式_湖南企业注册app_可以发广告的平台_推广方案策略怎么写

2024/11/17 3:49:20 来源:https://blog.csdn.net/qq_41221322/article/details/143225970  浏览:    关键词:网站名称格式_湖南企业注册app_可以发广告的平台_推广方案策略怎么写
网站名称格式_湖南企业注册app_可以发广告的平台_推广方案策略怎么写


博主介绍:专注于Java(springboot ssm 等开发框架) vue  .net  php phython node.js    uniapp 微信小程序 等诸多技术领域和毕业项目实战、企业信息化系统建设,从业十五余年开发设计教学工作
☆☆☆ 精彩专栏推荐订阅☆☆☆☆☆不然下次找不到哟
我的博客空间发布了1500+毕设题目 方便大家学习使用
感兴趣的可以先收藏起来,还有大家在毕设选题,项目以及论文编写等相关问题都可以给我留言咨询,希望帮助更多的人
更多项目地址 介绍 翰文编程-CSDN博客
文末下方有源码获取地址

4.2功能结构设计

为了让系统的编码可以顺利进行,特意对本系统功能进行细分设计,设计的系统功能结构见下图。

图4.1 系统功能结构图

4.3 数据库设计

开发一个系统也需要提前设计数据库。这里的数据库是相关数据的集合,存储在一起的这些数据也是按照一定的组织方式进行的。目前,数据库能够服务于多种应用程序,则是源于它存储方式最佳,具备数据冗余率低的优势。虽然数据库为程序提供信息存储服务,但它与程序之间也可以保持较高的独立性。总而言之,数据库经历了很长一段时间的发展,从最初的不为人知,到现在的人尽皆知,其相关技术也越发成熟,同时也拥有着坚实的理论基础。

4.3.1 数据库概念设计

这部分内容需要借助数据库关系图来完成,也需要使用专门绘制数据库关系图的工具,比如Visio工具就可以设计E-R图(数据库关系图)。设计数据库,也需要按照设计的流程进行,首先还是要根据需求完成实体的确定,分析实体具有的特征,还有对实体间的关联关系进行确定。最后才是使用E-R模型的表示方法,绘制本系统的E-R图。不管是使用亿图软件,还是Visio工具,对于E-R模型的表示符号都一样,通常矩形代表实体,实体间存在的关系用菱形符号表示,实体的属性也就是实体的特征用符号椭圆表示。最后使用直线将矩形,菱形和椭圆等符号连接起来。接下来就开始对本系统的E-R图进行绘制。

(1)下图是商品实体和其具备的属性。


图4.1 商品实体属性图

(2)下图是用户实体和其具备的属性。


图4.2 用户实体属性图

(3)下图是送货地址实体和其具备的属性。


图4.3 送货地址实体属性图

(4)下图是营销活动实体和其具备的属性。


图4.4 营销活动实体属性图

(5)下图是留言版实体和其具备的属性。


图4.5 留言版实体属性图

(6)下图是购物车实体和其具备的属性。


图4.6 购物车实体属性图

(7)下图是商品评价实体和其具备的属性。


图4.7 商品评价实体属性图

(8)下图是商品订单实体和其具备的属性。


图4.8 商品订单实体属性图

(9)下图是用户表实体和其具备的属性。


图4.9 用户表实体属性图

4.3.2 数据库物理设计

作为程序后台的支持,本数据库也需要设计数据存储的结构。而数据存储结构的设计就包括了数据表结构的设计和创建。数据表结构包括了字段,数据类型,还有字段的取值范围等信息。而E-R模型中的实体就是一张表,实体的特征就可以作为该表中的字段,根据本程序信息存储要求,设计每个字段需要的类型,还有该字段的取值范围等。每当设计完成一张数据表,就需要及时保存在数据库里面,并对该设计的数据表准确命名,要求设置的数据表的名称尽量不要是中文,而且要方便记忆。因为在程序编码阶段,通过SQL语句可以把程序里面的数据写入在各个数据表里面,而这个环节需要使用到数据表的名称。如果数据表名称是中文的话,可能会乱码并影响程序运行。下面就以表格形式展示设计的结果。

表4.1送货地址表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

yonghu_id

Integer

创建用户

3

address_name

String

收货人

4

address_phone

String

电话

5

address_dizhi

String

地址

6

isdefault_types

Integer

是否默认地址

7

insert_time

Date

添加时间

8

update_time

Date

修改时间

9

create_time

Date

创建时间

表4.2购物车表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

yonghu_id

Integer

所属用户

3

goods_id

Integer

商品

4

buy_number

Integer

购买数量

5

create_time

Date

添加时间

6

update_time

Date

更新时间

7

insert_time

Date

创建时间

表4.3字典表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

dic_code

String

字段

3

dic_name

String

字段名

4

code_index

Integer

编码

5

index_name

String

编码名字

6

super_id

Integer

父字段id

7

beizhu

String

备注

8

create_time

Date

创建时间

表4.4商品表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

goods_name

String

商品名称

3

goods_photo

String

商品照片

4

goods_types

Integer

商品类型

5

goods_price

Integer

购买获得积分

6

goods_kucun_number

Integer

商品库存

7

goods_old_money

BigDecimal

商品原价

8

goods_new_money

BigDecimal

现价

9

goods_clicknum

Integer

点击次数

10

shangxia_types

Integer

是否上架

11

goods_delete

Integer

逻辑删除

12

goods_content

String

商品简介

13

create_time

Date

创建时间

表4.5商品评价表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

goods_id

Integer

商品

3

yonghu_id

Integer

用户

4

goods_commentback_text

String

评价内容

5

reply_text

String

回复内容

6

insert_time

Date

评价时间

7

update_time

Date

回复时间

8

create_time

Date

创建时间

表4.6商品订单表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

goods_order_uuid_number

String

订单号

3

address_id

Integer

送货地址

4

goods_id

Integer

商品

5

yonghu_id

Integer

用户

6

buy_number

Integer

购买数量

7

goods_order_true_price

BigDecimal

实付价格

8

goods_order_types

Integer

订单类型

9

goods_order_payment_types

Integer

支付类型

10

insert_time

Date

订单创建时间

11

create_time

Date

创建时间

表4.7留言版表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

yonghu_id

Integer

用户

3

liuyan_name

String

留言标题

4

liuyan_text

String

留言内容

5

reply_text

String

回复内容

6

insert_time

Date

留言时间

7

update_time

Date

回复时间

8

create_time

Date

创建时间

表4.8营销活动表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

news_name

String

活动标题

3

news_photo

String

活动图片

4

news_types

Integer

活动类型

5

news_content

String

活动详情

6

create_time

Date

创建时间

表4.9用户表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

yonghu_name

String

用户姓名

3

yonghu_phone

String

用户手机号

4

yonghu_id_number

String

用户身份证号

5

yonghu_photo

String

用户头像

6

yonghu_email

String

电子邮箱

7

new_money

BigDecimal

余额

8

create_time

Date

创建时间

表4.10用户表表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

username

String

用户名

3

password

String

密码

4

role

String

角色

5

addtime

Date

新增时间

5 系统实现

这个环节需要使用前面的设计方案,包括对系统模块的设计,还有对程序后台的数据支持的数据库的设计等。不过这部分内容还是强调系统编码人员的开发能力,要把前面设计的内容通过编码的形式以一个完整的,可以运行的系统呈现出来。

功能模块的实现

5.1用户信息管理

如图5.1显示的就是用户信息管理页面,此页面提供给管理员的功能有:用户信息的查询管理,可以删除用户信息、修改用户信息、新增用户信息,

还进行了对用户名称的模糊查询的条件

图5.1 用户信息管理页面

5.2 商品信息管理

如图5.2显示的就是商品信息管理页面,此页面提供给管理员的功能有:查看已发布的商品信息数据,修改商品信息,商品信息作废,即可删除,还进行了对商品信息名称的模糊查询 商品信息信息的类型查询等等一些条件。

主要代码


package com.controller;import java.io.File;
import java.math.BigDecimal;
import java.net.URL;
import java.text.SimpleDateFormat;
import com.alibaba.fastjson.JSONObject;
import java.util.*;
import org.springframework.beans.BeanUtils;
import javax.servlet.http.HttpServletRequest;
import org.springframework.web.context.ContextLoader;
import javax.servlet.ServletContext;
import com.service.TokenService;
import com.utils.*;
import java.lang.reflect.InvocationTargetException;import com.service.DictionaryService;
import org.apache.commons.lang3.StringUtils;
import com.annotation.IgnoreAuth;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.entity.*;
import com.entity.view.*;
import com.service.*;
import com.utils.PageUtils;
import com.utils.R;
import com.alibaba.fastjson.*;/*** 商品* 后端接口* @author* @email
*/
@RestController
@Controller
@RequestMapping("/goods")
public class GoodsController {private static final Logger logger = LoggerFactory.getLogger(GoodsController.class);@Autowiredprivate GoodsService goodsService;@Autowiredprivate TokenService tokenService;@Autowiredprivate DictionaryService dictionaryService;//级联表service@Autowiredprivate YonghuService yonghuService;/*** 后端列表*/@RequestMapping("/page")public R page(@RequestParam Map<String, Object> params, HttpServletRequest request){logger.debug("page方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));String role = String.valueOf(request.getSession().getAttribute("role"));if(false)return R.error(511,"永不会进入");else if("用户".equals(role))params.put("yonghuId",request.getSession().getAttribute("userId"));params.put("goodsDeleteStart",1);params.put("goodsDeleteEnd",1);if(params.get("orderBy")==null || params.get("orderBy")==""){params.put("orderBy","id");}PageUtils page = goodsService.queryPage(params);//字典表数据转换List<GoodsView> list =(List<GoodsView>)page.getList();for(GoodsView c:list){//修改对应字典表字段dictionaryService.dictionaryConvert(c, request);}return R.ok().put("data", page);}/*** 后端详情*/@RequestMapping("/info/{id}")public R info(@PathVariable("id") Long id, HttpServletRequest request){logger.debug("info方法:,,Controller:{},,id:{}",this.getClass().getName(),id);GoodsEntity goods = goodsService.selectById(id);if(goods !=null){//entity转viewGoodsView view = new GoodsView();BeanUtils.copyProperties( goods , view );//把实体数据重构到view中//修改对应字典表字段dictionaryService.dictionaryConvert(view, request);return R.ok().put("data", view);}else {return R.error(511,"查不到数据");}}/*** 后端保存*/@RequestMapping("/save")public R save(@RequestBody GoodsEntity goods, HttpServletRequest request){logger.debug("save方法:,,Controller:{},,goods:{}",this.getClass().getName(),goods.toString());String role = String.valueOf(request.getSession().getAttribute("role"));if(false)return R.error(511,"永远不会进入");Wrapper<GoodsEntity> queryWrapper = new EntityWrapper<GoodsEntity>().eq("goods_name", goods.getGoodsName()).eq("goods_types", goods.getGoodsTypes()).eq("goods_price", goods.getGoodsPrice()).eq("goods_kucun_number", goods.getGoodsKucunNumber()).eq("goods_clicknum", goods.getGoodsClicknum()).eq("shangxia_types", goods.getShangxiaTypes()).eq("goods_delete", goods.getGoodsDelete());logger.info("sql语句:"+queryWrapper.getSqlSegment());GoodsEntity goodsEntity = goodsService.selectOne(queryWrapper);if(goodsEntity==null){goods.setGoodsClicknum(1);goods.setShangxiaTypes(1);goods.setGoodsDelete(1);goods.setCreateTime(new Date());goodsService.insert(goods);return R.ok();}else {return R.error(511,"表中有相同数据");}}/*** 后端修改*/@RequestMapping("/update")public R update(@RequestBody GoodsEntity goods, HttpServletRequest request){logger.debug("update方法:,,Controller:{},,goods:{}",this.getClass().getName(),goods.toString());String role = String.valueOf(request.getSession().getAttribute("role"));
//        if(false)
//            return R.error(511,"永远不会进入");//根据字段查询是否有相同数据Wrapper<GoodsEntity> queryWrapper = new EntityWrapper<GoodsEntity>().notIn("id",goods.getId()).andNew().eq("goods_name", goods.getGoodsName()).eq("goods_types", goods.getGoodsTypes()).eq("goods_price", goods.getGoodsPrice()).eq("goods_kucun_number", goods.getGoodsKucunNumber()).eq("goods_clicknum", goods.getGoodsClicknum()).eq("shangxia_types", goods.getShangxiaTypes()).eq("goods_delete", goods.getGoodsDelete());logger.info("sql语句:"+queryWrapper.getSqlSegment());GoodsEntity goodsEntity = goodsService.selectOne(queryWrapper);if("".equals(goods.getGoodsPhoto()) || "null".equals(goods.getGoodsPhoto())){goods.setGoodsPhoto(null);}if(goodsEntity==null){goodsService.updateById(goods);//根据id更新return R.ok();}else {return R.error(511,"表中有相同数据");}}/*** 删除*/@RequestMapping("/delete")public R delete(@RequestBody Integer[] ids){logger.debug("delete:,,Controller:{},,ids:{}",this.getClass().getName(),ids.toString());ArrayList<GoodsEntity> list = new ArrayList<>();for(Integer id:ids){GoodsEntity goodsEntity = new GoodsEntity();goodsEntity.setId(id);goodsEntity.setGoodsDelete(2);list.add(goodsEntity);}if(list != null && list.size() >0){goodsService.updateBatchById(list);}return R.ok();}/*** 批量上传*/@RequestMapping("/batchInsert")public R save( String fileName){logger.debug("batchInsert方法:,,Controller:{},,fileName:{}",this.getClass().getName(),fileName);try {List<GoodsEntity> goodsList = new ArrayList<>();//上传的东西Map<String, List<String>> seachFields= new HashMap<>();//要查询的字段Date date = new Date();int lastIndexOf = fileName.lastIndexOf(".");if(lastIndexOf == -1){return R.error(511,"该文件没有后缀");}else{String suffix = fileName.substring(lastIndexOf);if(!".xls".equals(suffix)){return R.error(511,"只支持后缀为xls的excel文件");}else{URL resource = this.getClass().getClassLoader().getResource("static/upload/" + fileName);//获取文件路径File file = new File(resource.getFile());if(!file.exists()){return R.error(511,"找不到上传文件,请联系管理员");}else{List<List<String>> dataList = PoiUtil.poiImport(file.getPath());//读取xls文件dataList.remove(0);//删除第一行,因为第一行是提示for(List<String> data:dataList){//循环GoodsEntity goodsEntity = new GoodsEntity();
//                            goodsEntity.setGoodsName(data.get(0));                    //商品名称 要改的
//                            goodsEntity.setGoodsPhoto("");//照片
//                            goodsEntity.setGoodsTypes(Integer.valueOf(data.get(0)));   //商品类型 要改的
//                            goodsEntity.setGoodsPrice(Integer.valueOf(data.get(0)));   //购买获得积分 要改的
//                            goodsEntity.setGoodsKucunNumber(Integer.valueOf(data.get(0)));   //商品库存 要改的
//                            goodsEntity.setGoodsOldMoney(data.get(0));                    //商品原价 要改的
//                            goodsEntity.setGoodsNewMoney(data.get(0));                    //现价 要改的
//                            goodsEntity.setGoodsClicknum(Integer.valueOf(data.get(0)));   //点击次数 要改的
//                            goodsEntity.setShangxiaTypes(Integer.valueOf(data.get(0)));   //是否上架 要改的
//                            goodsEntity.setGoodsDelete(1);//逻辑删除字段
//                            goodsEntity.setGoodsContent("");//照片
//                            goodsEntity.setCreateTime(date);//时间goodsList.add(goodsEntity);//把要查询是否重复的字段放入map中}//查询是否重复goodsService.insertBatch(goodsList);return R.ok();}}}}catch (Exception e){return R.error(511,"批量插入数据异常,请联系管理员");}}/*** 前端列表*/@IgnoreAuth@RequestMapping("/list")public R list(@RequestParam Map<String, Object> params, HttpServletRequest request){logger.debug("list方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));// 没有指定排序字段就默认id倒序if(StringUtil.isEmpty(String.valueOf(params.get("orderBy")))){params.put("orderBy","id");}PageUtils page = goodsService.queryPage(params);//字典表数据转换List<GoodsView> list =(List<GoodsView>)page.getList();for(GoodsView c:list)dictionaryService.dictionaryConvert(c, request); //修改对应字典表字段return R.ok().put("data", page);}/*** 前端详情*/@RequestMapping("/detail/{id}")public R detail(@PathVariable("id") Long id, HttpServletRequest request){logger.debug("detail方法:,,Controller:{},,id:{}",this.getClass().getName(),id);GoodsEntity goods = goodsService.selectById(id);if(goods !=null){//点击数量加1goods.setGoodsClicknum(goods.getGoodsClicknum()+1);goodsService.updateById(goods);//entity转viewGoodsView view = new GoodsView();BeanUtils.copyProperties( goods , view );//把实体数据重构到view中//修改对应字典表字段dictionaryService.dictionaryConvert(view, request);return R.ok().put("data", view);}else {return R.error(511,"查不到数据");}}/*** 前端保存*/@RequestMapping("/add")public R add(@RequestBody GoodsEntity goods, HttpServletRequest request){logger.debug("add方法:,,Controller:{},,goods:{}",this.getClass().getName(),goods.toString());Wrapper<GoodsEntity> queryWrapper = new EntityWrapper<GoodsEntity>().eq("goods_name", goods.getGoodsName()).eq("goods_types", goods.getGoodsTypes()).eq("goods_price", goods.getGoodsPrice()).eq("goods_kucun_number", goods.getGoodsKucunNumber()).eq("goods_clicknum", goods.getGoodsClicknum()).eq("shangxia_types", goods.getShangxiaTypes()).eq("goods_delete", goods.getGoodsDelete());logger.info("sql语句:"+queryWrapper.getSqlSegment());GoodsEntity goodsEntity = goodsService.selectOne(queryWrapper);if(goodsEntity==null){goods.setGoodsDelete(1);goods.setCreateTime(new Date());goodsService.insert(goods);return R.ok();}else {return R.error(511,"表中有相同数据");}}}

图5.2 商品信息管理页面

5.3商品评论管理

如图5.3显示的就是商品评论管理页面,此页面提供给管理员的功能有:根据商品评论进行条件查询,还可以对商品评论进行新增、修改、查询操作等等。

图5.3 商品评论管理页面

大家点赞、收藏、关注、评论啦  其他的定制服务  下方联系卡片↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ 或者私信作者