12 Star 171 Fork 6

Captain / 花卷商城 - Steamed Bread Roll Mall

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
GPL-2.0

Steamed Bread Roll Project

项目文档

项目介绍

花卷商城,一款基于 Springboot+Vue 的电商项目,前后端分离项目

项目演示地址:花卷买卖

本项目为简单的课设项目,禁止修改后商用,不承担一切责任

项目部署失败或不会部署的,可以加QQ联系我,简单问题会回复。

对项目部署不熟悉,想省事,或想快速部署测试效果的,可以考虑远控帮你部署。

:point_right: QQ:1325554003

测试账号

后台管理账号

顾客账号

支付宝支付账号

迭代更新

更新时间:2021-12-25

不兼容升级:

  1. 支持Docker部署,通过Dockerfile构建镜像
  2. 优化上传图片逻辑
  3. yml配置文件加密处理,不对外暴露配置文件信息
  4. 启动项目时,需要传入配置文件解密密钥,或者将加密的配置信息换成自己的

更新时间:2021-12-05

问题修复:

  1. 创建用户、生成订单等操作造成时间字段报null空指针错误。【已修复】
  2. 从购物车下单后,购物车中的商品还存在问题。【已修复】
  3. 注册用户页面,发送邮箱验证码时,数字验证码一直不变问题,【已修复】
  4. 项目文件目录规范化,目录命名规范化。
  5. Vue项目启动命令为:npm run serve 或 npm start,项目启动后自动打开网页。

新功能:

  1. 项目启动时,可通过application.yml配置文件配置超级管理员账号,在admin属性下配置邮箱、用户名等信息。当项目启动时自动检测邮箱是否已被注册;若此邮箱没有被注册,则自动帮你注册为超级管理员账号。

  2. 商品评价时,增加敏感词汇过滤功能,在项目resources文件夹下有个words.txt文件存储敏感词汇信息,当评价商品时,会将敏感词汇替换成*;例如words.txt中有【刷单】这个词,当评论中存在刷单时,会被替换为*

  3. vue项目中引入animate.css动画库,个别地方增加了一些动画效果,例如首页logo、花卷会员等地方。如果想要自定义动画效果,只需要在对应的标签上加个class属性就可以。

    animate.css官网链接:https://animate.style/

    <h1 class="animate__animated animate__bounce">An animated element</h1>
  4. 我的订单页面,允许隐藏已经购买完成的订单信息,当购买数量过多时,会显得页面特别乱,增加了隐藏订单功能。

以上是本次项目迭代更新的全部功能,如果项目中你发现了新的问题,可以加QQ讨论如何修复此问题。


Docker部署项目

# Dockerfile 构建项目
docker build -t breadroll-project/breadroll-mall:1.0 .
# docker 启动项目
docker run -d -p 9999:9999 --name breadroll-mall \
-e jasypt_password="your password" \
-v /etc/localtime:/etc/localtime \
-v /docker/project/mall/logs:/log \
breadroll-project/breadroll-mall:1.0

软件架构

后端技术

技术 说明 官网
SpringBoot 容器+MVC框架 https://spring.io/projects/spring-boot
Shiro 认证和授权框架 Apache Shiro Simple. Java. Security.
MyBatis ORM框架 http://www.mybatis.org/mybatis-3/zh/index.html
MySQL 数据库 https://www.mysql.com/
Redis 分布式缓存 https://redis.io/
Druid 数据库连接池 https://github.com/alibaba/druid

前端技术

技术 说明 官网
Vue 前端框架 https://vuejs.org/
Vue-router 路由框架 https://router.vuejs.org/
Vuex 全局状态管理框架 https://vuex.vuejs.org/
Element 前端UI框架 https://element.eleme.io
Axios 前端HTTP框架 https://github.com/axios/axios
vue-clipboard2 将内容复制到剪贴板 https://github.com/Inndy/vue-clipboard2
vuex-persistedstate vuex持久化 https://www.npmjs.com/package/vuex-persistedstate
nprogress 进度条控件 https://github.com/rstacruz/nprogress

开发环境

工具 版本号 下载
JDK 1.8 https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html
Mysql 5.7 https://www.mysql.com/
Redis 5.0.10 https://redis.io/download

第三方技术

工具 官网
支付宝沙箱技术 https://opendocs.alipay.com/common/02kkv7
OSS 存储 https://cn.aliyun.com/
阿里云短信服务 https://cn.aliyun.com/
网易邮箱服务 https://email.163.com/

项目部署

将项目通过maven打成jar包,服务器运行jar包即可

需开放的端口号:

9999	# 项目端口号
3306	# mysql 主机端口
6379	# redis 数据库
994		# 网易163邮箱 服务端口

软件截图

登录界面

image-20210123150534593

个人中心

image-20210123145636758

修改密码

image-20210123145727924

我的订单

image-20210123145844095

我的购物车

image-20210123145912312

商品搜索

image-20210123150025628

购买页面

image-20210123150056791

商品评价

image-20210123150147433

管理后台

由于数据安全性,想要进入后台需要我授予权限后才能访问

image-20210123151009898

商品列表

image-20210123151322117

商品分类

image-20210123151555762

商品品牌

image-20210123151424726

商品采购

image-20210123151512327

订单列表

image-20210123151939162

退货申请处理

image-20210123151707001

退货原因设置

image-20210123151741155

商品轮播图

image-20210123152018922

用户列表

image-20210123152141960

角色列表

image-20210123152215106

数据库文档

数据库介绍

数据库名

目前数据库名为 qiu ,若需更改数据库名称时,需要将 数据库事件 中的数据库名一并更改。

数据库编码

字符集:utf8

数据库排序规则:utf8_general_ci

数据库表(18个)

用户表(user)
列名 数据类型 长度 默认 主键 非空 自增 注释
user_id int 5 用户ID
account_number varchar 30 用户账号
user_name varchar 30 用户昵称
password varchar 50 用户密码
user_sex varchar 6 用户性别
telephone varchar 11 用户手机号
creat_time timestamp CURRENT_TIMESTAMP 注册时间
login_time timestamp CURRENT_TIMESTAMP 登录时间
user_state tinyint 1 1 用户状态
summary varchar 50 个人简介
user_address varchar 100 用户地址
avatar_url varchar 200 用户头像
background_url varchar 200 背景图片
角色表(role)
列名 数据类型 长度 默认 主键 非空 自增 注释
role_id int 5 角色id
role_name varchar 30 角色名称
role_describe varchar 50 角色描述
role_state tinyint 1 1 是否启用
用户角色表(user_role)
列名 数据类型 长度 默认 主键 非空 自增 注释
user_id int 5 用户id
role_id int 5 角色id
花卷VIP表(vip)
列名 数据类型 长度 默认 主键 非空 自增 注释
vip_id int 6 vip ID
account_number varchar 30 用户帐号
creat_time timestamp CURRENT_TIMESTAMP 充值时间
overdue_time timestamp CURRENT_TIMESTAMP 过期时间
商品表(product)
列名 数据类型 长度 默认 主键 非空 自增 注释
product_id int 5 商品ID
product_no varchar 30 商品编号
product_name varchar 30 商品名称
product_type varchar 30 商品类别
product_describe varchar 100 副标题
product_brand varchar 30 品牌
in_price double 进价
out_price double 售价
product_stock int 6 库存
lowest_stock int 6 最低库存
is_stockout tinyint 1 0 是否缺货
is_new tinyint 1 1 是否新品
is_sale tinyint 1 1 是否上架
sale_time timestamp CURRENT_TIMESTAMP 上架时间
product_url varchar 200 商品图片
商品类别表(product_type)
列名 数据类型 长度 默认 主键 非空 自增 注释
type_id int 5 类别id
type_name varchar 30 类别名称
type_describe varchar 100 类别描述
type_url_left varchar 200 左侧宣传图
type_url_top varchar 200 横幅宣传图
商品品牌表(product_brand)
列名 数据类型 长度 默认 主键 非空 自增 注释
brand_id int 5 品牌ID
brand_name varchar 30 品牌名称
brand_describe varchar 100 品牌描述
规格表(specs)
列名 数据类型 长度 默认 主键 非空 自增 注释
specs_id int 5 规格ID
specs_name varchar 50 规格类型
product_type varchar 30 商品类别
商品规格表(product_specs)
列名 数据类型 长度 默认 主键 非空 自增 注释
product_id int 5 商品id
specs_id int 5 规格id
供应商表(supplier)
列名 数据类型 长度 默认 主键 非空 自增 注释
supplier_id int 5 供应商ID
supplier_no varchar 30 供应商编号
supplier_name varchar 30 供应商名称
product_type varchar 30 商品类别
principal varchar 30 负责人
contact_way varchar 30 联系方式
status tinyint 1 1 是否可用
采购表(purchase)
列名 数据类型 长度 默认 主键 非空 自增 注释
purchase_id int 5 采购ID
purchase_no varchar 30 采购编号
purchase_number int 6 进货数量
purchase_time timestamp CURRENT_TIMESTAMP 进货时间
receipt_time timestamp CURRENT_TIMESTAMP 收货时间
product_no varchar 30 商品编号
product_name varchar 30 商品名称
supplier_no varchar 30 供应商编号
supplier_name varchar 30 供应商名称
account_number varchar 30 操作员编号
user_name varchar 30 操作员名称
receipt_status tinyint 1 收货状态
商品评价表(product_review)
列名 数据类型 长度 默认 主键 非空 自增 注释
review_id int 8 用户评论ID
account_number varchar 30 用户帐号
product_no varchar 30 商品编号
product_specs varchar 30 商品规格
order_no varchar 30 订单编号
review_time timestamp CURRENT_TIMESTAMP 评论时间
star_level double 商品评星
product_review varchar 300 商品评价
轮播图表(banner)
列名 数据类型 长度 默认 主键 非空 自增 注释
banner_id int 5 商品广告牌ID
product_name varchar 30 商品名称
product_url varchar 200 商品链接
banner_url varchar 200 广告宣传栏链接
订单表(order)
列名 数据类型 长度 默认 主键 非空 自增 注释
order_id int 7 订单ID
order_no varchar 30 订单编号
order_time timestamp CURRENT_TIMESTAMP 下单时间
product_no varchar 30 商品编号
product_specs varchar 30 商品规格
user_account varchar 30 用户账号
user_name varchar 30 用户名称
contact_way varchar 30 联系方式
pay_price double 商品金额
pay_amount int 6 购买数量
pay_type varchar 20 支付方式
order_from varchar 20 订单来源
order_state varchar 20 订单状态
accept_address varchar 100 收货地址
return_state tinyint 1 0 退货状态
物流表(logistics)
列名 数据类型 长度 默认 主键 非空 自增 注释
logistic_id int 6 物流ID
order_no varchar 30 订单编号
sender varchar 30 发货人
sender_tel varchar 30 发货人联系方式
sender_add varchar 50 发货人联系地址
receiver varchar 30 收货人
receiver_tel varchar 30 收货人联系方式
receiver_add varchar 50 收货人联系地址
parcel_name varchar 30 物流公司
退货原因表(return_reason)
列名 数据类型 长度 默认 主键 非空 自增 注释
reason_id int 5 退货ID
reason_name varchar 30 退货理由
status tinyint 1 1 是否启用
商品退货表(return_goods)
列名 数据类型 长度 默认 主键 非空 自增 注释
return_id int 5 退货ID
apply_time timestamp CURRENT_TIMESTAMP 申请时间
order_no varchar 30 订单编号
user_number varchar 30 用户账号
user_name varchar 30 用户名称
return_price double 退款金额
operator_number varchar 30 操作员账号
operator_name varchar 30 操作员名称
deal_time timestamp 处理时间
return_reason varchar 30 退货原因
return_state varchar 20 退货状态
购物车表(shopping_cart)
列名 数据类型 长度 默认 主键 非空 自增 注释
cart_id int 8 购物车ID
account_number varchar 30 用户帐号
product_id int 5 商品ID
pay_amount int 5 购买数量
product_specs varchar 100 商品规格

数据库触发器(2个)

用户表插入触发器(user_insert)

注册用户时,自动向 用户角色表添加信息,将新注册的用户权限设置为 普通用户

CREATE
    TRIGGER `user_insert` AFTER INSERT ON `user` 
    FOR EACH ROW BEGIN
	DECLARE roleId INT;
	SET roleId = (SELECT role_id FROM role WHERE role_name ='顾客');
		INSERT user_role VALUES(new.user_id,roleId);
    END;
$$
订单表删除触发器(order_delete)

当用户取消未付款订单时,自动将订单购买数量加到商品库存上

CREATE
    TRIGGER `order_delete` BEFORE DELETE ON `order` 
    FOR EACH ROW BEGIN
	UPDATE product SET product_stock = product_stock + old.pay_amount WHERE product_no = old.product_no;
    END;
$$

数据库事件(1个)

商品表定时事件(product_event)

通过定时事件,每天定时检查

① 当商品上架时间超过15天后,自动取消新品状态,(商品新品状态保留15天)

② 当用户下单后,但并未付款,为其保留24小时付款时间,24小时超过后,商品收回,自动取消订单

③ 当VIP会员过期后,自动检查并从表中删除过期会员的信息

DELIMITER $$

CREATE EVENT `qiu`.`product_event`

ON SCHEDULE EVERY 1 DAY

STARTS '2021-1-7 02:00:00'
#开始时间自行更改
ON COMPLETION PRESERVE

DO
	BEGIN
		UPDATE product SET is_new = 0 WHERE sale_time<(CURRENT_TIMESTAMP() + INTERVAL -15 DAY);#修改15天前的新品数据
		DELETE FROM qiu.`order` WHERE order_time < DATE_SUB(CURDATE(),INTERVAL 1 DAY) AND order_state='待付款';	#清除24小时内未付款的订单信息
		DELETE FROM vip WHERE overdue_time <= CURDATE(); #清除 VIP表 会员过期的信息
	END$$

DELIMITER ;

检测事件是否开启

show variables like 'event_scheduler';

开启事件

set global event_scheduler = on;

开启执行事件

alter event product_event on completion preserve enable;

关闭执行事件

alter event product_event on completion preserve disable;

删除事件

drop event event_name;
GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. <one line to give the program's name and a brief idea of what it does.> Copyright (C) <year> <name of author> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. <signature of Ty Coon>, 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License.

简介

花卷商城 | 随心买 · 安心卖 花卷商城是一款基于 Springboot、Vue 的电商项目,前后端分离技术;UI框架采用ElementUI,安全认证采用sa-token轻量级权限认证框架; 展开 收起
GPL-2.0
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
Java
1
https://gitee.com/mayingfa/steamed-bread-roll-project.git
git@gitee.com:mayingfa/steamed-bread-roll-project.git
mayingfa
steamed-bread-roll-project
花卷商城 - Steamed Bread Roll Mall
master

搜索帮助