1 Star 0 Fork 52

夜泊 / 仓库信息管理系统

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

前言

此项目为仓库管理系统,是我大二下的实训课作业,虽然是从学期初开始写的,但是实际写项目的日子也就十多天(前面都没怎么动,果然只有临近ddl效率才高)。

到我写这篇博文的时候,实际上项目还有小部分功能未完成,当然如果你不是逐个试过去你是发现不了的(笑哭)。

说实话,我实在不想在未完成前写类似实验报告的文档,而且我也不喜欢写文档。我一直认为写项目根本不需要那么多死板的文档(反正也只是作业)。

有人可能又会奇怪我不喜欢写文档为啥写那么多博文?这个嘛,我写博文的目的也只是想把我彼时彼刻的情感和经验分享出来,我更倾向于那种随性的分享,不想循规蹈矩的写那些死板的文档。

挺不喜欢那些老师每次要做项目都得要我们交各种图,各种功能业务表。那些图对于那些简单的项目还可以,毕竟不复杂,但是对于一个稍微大点的项目,光代码就一大堆,画那些业务图要画到猴年马月去?

有时候,围绕着一个增删改查的小项目大谈架构,这并不是一个明智的选择。 ....

好了,碎碎念了这么多,实在抱歉,下面是正文:

一、项目概述

1.项目需求

实现材料仓库的管理:提供材料出入库管理等实用功能。 材料入库管理:材料检验入库、入库查询、入库类别按月统计; 材料出库管理:材料库存查询、材料出库、出库查询、出库类别按月统计; 辅助管理:仓库系统的人员管理、基础表的管理。

当然啦,以上只是简单的需求,多的我也不展示了。

2.总述

此项目为Javaweb项目,前后端不分离,典型的单体架构,主要功能是对仓库转入转出等业务进行管理,并对数据进行可视化展示,同时有部分权限管理的功能(为什么这么说呢,因为我这部分做的并不严谨,如果后面有时间我会尽可能完善)。

3.技术栈选择

前端:layui、jquery、echarts、thymeleaf模板引擎 后端:mysql、maven、tomcat、mybatis、springMVC、spring、SpringBoot、logback

注意:这里的前端页面我拿了gitee上的开源模板layui-mini,地址

4.环境介绍

数据库:mysql8.0 项目结构:maven 数据库连接池:Druid 前端框架:layui、jquery、echarts、thymeleaf模板引擎 后端框架:SpringBoot、SSM 语言:Java jdk版本:8 编写的IDE:IDEA

5.效果图展示

为了更直观的展示项目,这里先放几张效果图

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

二、设计思路

在说明自己的设计思路之前,我们先来看看一般意义上的SSM项目的架构图

1.SSM项目(单体架构)示意图

在这里插入图片描述

由上图可以看到SSM项目中大致的组成。 一般的SSM应用都会分三层——数据库层,业务层,控制层,而我们这个仓库信息管理系统也是如此。

2.前后端交互示意图

有人可能不太明白SSMweb应用是如何进行前后端交互的,因此我又补充了交互的部分,如下图: 在这里插入图片描述

前后端的交互都以HTTP请求展开的。有些请求是请求页面的;有些请求是请求静态资源的,如css文件,图片等;有些请求是请求数据的,比如出入库记录。

下面是三层调用的细节示意图

在这里插入图片描述

上图中我们可以直观的看到SSM项目的基本运行流程。

当请求到来时,先会经过拦截器链,拦截器利用反射机制实现了对请求处理和返回的处理,可以利用它来实现鉴权服务和权限控制

之后请求分发,对应的请求会有对应处理程序来处理,而这就是Controller控制层的工作,而控制层也会调用相应的业务层方法来进行操作或者返回对应的静态资源、页面等。

Service业务层专门处理业务层面的操作,比如入库,出库,出库成功会创建相应的申请记录同时改变库存数据,至于如何改变,如何增加这是数据库层的事情,在这层只需调用对应的Dao层方法即可。而有些操作需要保证失败回滚的机制,所以可以在Service层开启事务功能。

Dao层通常与数据库中的表一一对应,一般都是去实现增删改查,而mybatis框架将sql语句和程序分离,极大简化了我们的开发。

3.仓库管理系统架构图

在看完了SSM单体项目一般是如何架构之后,再来看看我们的系统架构图(由于业务比较少,所以这里可以直接把各个类写到上面) 在这里插入图片描述

和上面的大差不差,只不过这里利用拦截器实现了token机制来进行三级权限控制,同时多用了点spring的aop来处理日志信息,以及利用增强Controller处理全局异常信息,返回对应的错误响应。

4.响应格式

对于前后端分离的项目,响应格式必定是前后端交流非常重要的一环。虽说这里并不是前后端分离开发,但为了规范,还是规定了请求响应的格式。

status:状态码
statusInfo:{
	message:字段作为接口处理失败时, 给予用户的友好的提示信息, 即所有给用户的提示信息都统一由后端来处理
	detail:字段用来放置接口处理失败时的详细错误信息. 只是为了方便排查错误, 前端无需使用.
}
data:返回的数据
count:分页请求数据时使用的参数,意为有多少数据

5.异常处理机制

利用增强Controller的机制来处理全局的异常,然后返回给前端对应的错误响应,如: 在这里插入图片描述

6.日志记录机制

利用spring的aop机制,我们可以轻松的在controller接口处理请求之前打印请求的相关信息到日志文件中。

7.鉴权服务设计与实现

关于此系统的鉴权服务,也就是我们常说的注册登录,我用的是自己实现的一套简单的token机制,示意图如下: 在这里插入图片描述

简而言之,用户登录后会进行校验密码(为了安全期间,数据库中的密码是经过加密存储的,所以比对时我们也会对密码加密再进行比对),校验通过会给前端一个token令牌的凭证(实际上是根据登录用户名,如邮箱,以当前时间作为盐进行MD5加密后返回的一串字符串)。

该令牌会存储在系统的认证令牌池中,而用户得到的用户凭证会被存储在浏览器的cookie中。

用户每次访问系统资源时,请求头里都会携带token凭证,而每次请求(登录请求,发送验证码等特殊请求除外)都会被userIntercepter拦截器拦截,该拦截器会取出请求中的token凭证,然后去和认证令牌池中校验。如果有且未过期,则放行,同时将该认证令牌放入到请求的Atribute中以便后面的程序处理;否则重定向回登录页面让用户进行登录操作。

关于这个鉴权服务,我写过另一篇博文——手把手教你用Java实现一套简单的鉴权服务(SpringBoot,SSM)(万字长文),有兴趣可以去看看。

8.业务功能简述

在这里插入图片描述

该系统主要的就是模拟仓库出入库的流程,所以我把用户的角色氛围普通用户、审核员、仓管员和系统管理员。

普通用户可以填写出入库申请进行制单,然后相应的审核人进行审核,审核员可以指定该仓库的仓管员进行验收,或者审核不通过;当审核成功,货物成功到达仓库时,仓库员进行验收操作,如果验收通过,则成功入库或者出库,相应的库存信息也发生变化。

系统管理员可以管理网站用户,同时发布网站公告。(这个角色权限管理的部分我还没完成,目前所有用户都可以操作所有功能)

除此之外,我还对与一些出入库申请、库存、仓库等信息进行查询和可视化的操作,让仓库管理员可以更直观的看到仓库信息的变化。

三、数据库设计

1.数据库模型设计概览

在这里插入图片描述

2.数据库表设计

①depository

在这里插入图片描述

描述: 该表存储仓库的信息,比如仓库名称,仓库地址和仓库介绍

表结构:

序号 字段名 数据类型 主键 非空 默认值 描述
1 id INT(10) 仓库id
2 dname VARCHAR(255) 仓库名称
3 address VARCHAR(255) 仓库地址
4 introduce VARCHAR(255) 仓库介绍

②仓库调度记录(depository_record)

描述: 该表记录仓库调度的记录,同时该表也是数据也可以看做一条条申请信息。

表结构:

序号 字段名 数据类型 主键 非空 默认值 描述
1 id INT(10) 记录id
2 application_id INT(10) 申请编号(暂时无用)
3 mname VARCHAR(255) 产品名称
4 depository_id INT(10) 调度的仓库id
5 type INT(10) 0 调度记录类型(0出库,1入库)
6 quantity DOUBLE(22) 数量
7 price DOUBLE(22) 价格
8 state VARCHAR(255) 状态(待审核/审核未通过,未入库/出库/检验不通过,待验收/已入库/已出库)
9 applicant_id INT(10) 申请人id
10 apply_remark VARCHAR(255) 申请备注
11 apply_time DATETIME 申请时间
12 reviewer_id INT(10) 审核人id
13 review_remark VARCHAR(255) 审核结果备注
14 review_time DATETIME 审核时间
15 review_pass INT(10) 审核是否通过,0表示未通过,1表示通过
16 checker_id INT(10) 验货人id
17 check_remark VARCHAR(255) 验收备注
18 check_time DATETIME 出入库时间(验货时间)
19 check_pass INT(10) 验收是否通过

3、产品信息记录(库存)(material)

在这里插入图片描述

描述: 产品信息记录(库存信息)

表结构:

序号 字段名 数据类型 主键 非空 默认值 描述
1 id INT(10) 存储id
2 depository_id INT(10) 仓库名称
3 mname VARCHAR(255) 材料名称
4 quantity DOUBLE(22) 数量
5 price DOUBLE(22) 总金额
6 type_id INT(10) 材料种类id

4、material_type

描述: 材料种类,我对材料进行了分类,这样统计起来也方便很多,另外建一个表是为了防止以后可能会对材料类型做的补充,同时节省存储空间。

表结构:

序号 字段名 数据类型 主键 非空 默认值 描述
1 id INT(10) 类型id
2 tname VARCHAR(255) 类型名称
3 introduce VARCHAR(255) 类型介绍

5、notice

描述: 公告表,用于存储公告信息

表结构:

序号 字段名 数据类型 主键 非空 默认值 描述
1 id INT(10) 公告主键
2 title VARCHAR(255) 公告标题
3 content VARCHAR(255) 公告内容
4 time DATETIME 发布时间

6、standing_book

在这里插入图片描述

描述: 台账表,作业要求里有要台账表,但我觉得这和仓库调度表没啥区别,所以这个表我虽然建了,但实际并未使用。

表结构:

序号 字段名 数据类型 主键 非空 默认值 描述
1 id INT(10) 台账记录id
2 type INT(10) 0表示调入,1表示调出(外部);2表示调入(退料),3表示调出(领料)(内部调用)
3 quantity INT(10) 0 数量
4 price INT(10) 0 总价
5 material_name VARCHAR(255) 材料名称

7、transfer_record

在这里插入图片描述

描述: 转移表,这个是用来关联转移操作的。

表结构:

序号 字段名 数据类型 主键 非空 默认值 描述
1 id INT(10) 转移记录id
2 from_id INT(10) 转出仓库记录id
3 to_id INT(10) 转入仓库记录id

8、 user

在这里插入图片描述

描述: 用户表,这里的密码是经过加密存储的,所以就算黑客破解数据库了,那损失也不会太大。

表结构:

序号 字段名 数据类型 主键 非空 默认值 描述
1 id INT(10) 用户id
2 uname VARCHAR(255) 用户名称
3 authority VARCHAR(255) 表示权限等级(游客/员工/审核员/仓管员/系统管理员)
4 pwd VARCHAR(255) 用户登录密码(数据库存储的是加密后的)
5 sex VARCHAR(255) 性别
6 depository_id INT(10) 负责仓库,序号表示仓库id,0表示全部仓库
7 entry_date DATE 入职日期
8 email VARCHAR(255) 邮箱
9 phone VARCHAR(255) 手机号

四、功能设计与展示

功能设计概览图

在这里插入图片描述

1.鉴权认证

这块如果要讲,如果要详细讲,东西会很多。这里只简要的提一下。 用户注册的时候,输入邮箱后点击发送验证码,服务器会先判断该用户邮箱是否已经被注册,如果没有则会向相应邮箱发送验证码,验证码有效时间默认为5分钟,有则返回提示信息告知用户该邮箱已被注册。

在这里插入图片描述

在这里插入图片描述

而输入信息和验证码后系统会进行校验,如果成功就对密码进行MD5加密,然后存入用户信息表中。

而对于用户登录,我采用的是token机制。

2.仓库管理

①出入库申请流程

参与出入库申请的角色有三个——发起申请的普通用户,审核申请的审核人,仓库验收的仓管员。 普通用户发起申请(制单)->审核人审核申请->相应仓管员验收货物->入库或出库

用户能发起三种类型的申请——出库,入库,转移 在这里插入图片描述

在这里插入图片描述

②出入库管理

1.出入库查询

在这里插入图片描述

用户可以查看出入库申请记录,同时也可以选择开始日期,仓库,材料名称等来进行自己期望的查询,并可以点击详情查看详细信息。

注:这里表格的数据并不是一次全部给前端,而是前端根据自己的需求分页获取

在这里插入图片描述

也可以对记录进行 (批量)删除在这里插入图片描述

也可以进行排序筛选 在这里插入图片描述 在这里插入图片描述

同时也支持对当前数据进行导出打印

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

2.可视化展示

出入库的信息将会以图表的信息展现出来,可以给管理者一个更直观的感受 在这里插入图片描述

在这里插入图片描述

③库存管理

1.库存查询

这个和上面类似,不过这里因为字段较少就没有设置详情,同时为了库存安全,这里并未提供增删改功能,只能供用户查询信息。 在这里插入图片描述

不过也提供筛选、导出和打印的功能 在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

2.可视化展示

在这里插入图片描述

④其他管理

这里我只写了仓库增加和材料类型增加

1.材料种类添加

在这里插入图片描述

2.仓库创建

3.个人管理

①我的任务

此处会显示登录用户的未完成任务已完成任务

注:这里采取流式加载来懒加载数据

在这里插入图片描述

点击加载更多会向服务器请求另外所需数据,如果没有则会显示“没有更多了”

在这里插入图片描述

点击未完成任务,则会进入审核/验收页面 在这里插入图片描述

在这里插入图片描述

审核的话需要指定对应仓库的仓管员负责验收任务,同时写下备注,点击审核通过或者不通过。 验收只要写备注以及验收通过或者不通过。

在这里插入图片描述

②我的申请

在这里可以查看自己提交的申请

在这里插入图片描述

点击可以查看申请所处的流程阶段,实时查看自己的申请状况。 在这里插入图片描述

在这里插入图片描述

③个人信息管理

在这个页面,用户可以查看和修改自己的非敏感信息。 在这里插入图片描述

在这里插入图片描述

如果你要对你的绑定邮箱和密码进行修改,则需要进行额外的流程 在这里插入图片描述

在这里插入图片描述

4.网站管理

①公告

在这里可以发布公告 在这里插入图片描述

同时在首页可以查看对应公告 在这里插入图片描述

在这里插入图片描述

②人员管理

系统管理员可以查看对应的人员信息 在这里插入图片描述

可以筛选查询需要的信息 在这里插入图片描述

可以(批量)删除用户信息,也可以添加用户信息 在这里插入图片描述

或者编辑修改用户信息 在这里插入图片描述

还可以导出打印用户信息 在这里插入图片描述

五、代码结构

1.包结构

这里为了让更多人看懂代码,我讲讲我的代码结构和对应包的意义。 首先是典型的maven结构,main里面是源代码。 在这里插入图片描述 entity:数据库实体类,与数据库字段一一对应 pojo:封装实体类,用于封装数据库实体类给前端需要的数据 mapper:数据库层,专门与数据库打交道 service:业务层,封装业务逻辑 controller:控制层,控制对应数据和视图,以及做一些参数检查

aop:这里面放的是切面相关的类。这里我就放了一个日志切面类,用于记录日志的 config:配置包,放配置类。这里我放了springMVC的配置类 exception:异常类。这里我定义了自己的异常类MyException exceptionHandler:异常处理类。这里我用于捕获抛出的异常,同时返回给前端对应的错误信息 intercepter:拦截器类。利用spring的拦截器,用于做用户鉴权与权限控制。 security:安全控制,这个包下我自己实现了一套token机制,详情看我另一篇博文手把手教你用Java实现一套简单的鉴权服务(SpringBoot,SSM)(万字长文) utils:工具类,封装了一些常用操作

六、做项目时遇到的问题

1.静态资源被拦截

在测试项目过程中,我发现返回的页面都未加载出css下的public.css文件,一开始以为是maven配置的原因导致没把对应的静态文件输出target目录中,但是看了后发现静态文件已经加载进target目录中。 于是查看对应报错信息是404未找到, 在这里插入图片描述 可对应目录下有相应文件,于是我怀疑是被框架拦截了。 于是搜索相关信息,果然如此。

根据网络上的方法改来改去还是不行(主要是不明白为什么)。 认真思考推测问题的原因后,我把静态文件都放在了static目录下,同时在application.yml中加入了这句, 在这里插入图片描述 就是告诉springMVC,static开头的是静态文件,你别给我拦截了。 然后我在引用静态文件时都采用static开头的写法 在这里插入图片描述

做完之后问题成功解决!

2.layui框架动态表格分页的坑

这个也不算坑吧,可能也是我自己没理解,我误把count属性想成了这次请求返回的数据的数量,可实际上是所有数据的条数。仔细想想也确实该如此,不然前端怎么知道该分多少页呢?

3.部署的坑

部署的时候发现访问相应的网页,服务器上报模板未找到,搜了一下发现,返回的路径不该以/开头,当然这么说是不严谨的,这个取决于springMVC的配置 在这里插入图片描述

这里我配了/,所以路径前加/的话会有两个//,因此无法找到。

七、心得体会

项目从头到尾写下来,感觉锻炼最大的不是我的后端能力,而是我的前端能力!在写页面的过程中,我渐渐开始自己去读对应文档学习前端知识,去编写自己想要的页面,去实现自己想要的功能。最后回过头去看项目,感觉还算不错,而我也摸到了前端的一些门路(当然我前端菜鸟的身份依旧未变)。

最后,附上项目演示地址演示地址,账号123456@qq.com,密码123456。

此项目已开源至gitee,想拿项目去玩玩的可以点击这里查看gitee地址,如果觉得还不错不要忘了star哦!

注:目前项目部分功能并未开发完全,由于期末要上交实验报告,所以介绍的博文我提前发出来了。由于期末很忙(一边准备期末考试,一边安排协会事宜,安排实验室暑假集训)短时间内也并不会去开发完善功能。还有就是我租的阿里云服务器快到期了,到时候估计会重新租个华为云的服务器,所以演示地址可能会失效,如果失效了记得@我一下。

愿我们以梦为马,不负青春韶华! 与君共勉!

Academic Free License (“AFL”) v. 3.0 This Academic Free License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following licensing notice adjacent to the copyright notice for the Original Work: Licensed under the Academic Free License version 3.0 1) Grant of Copyright License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, for the duration of the copyright, to do the following: a) to reproduce the Original Work in copies, either alone or as part of a collective work; b) to translate, adapt, alter, transform, modify, or arrange the Original Work, thereby creating derivative works ("Derivative Works") based upon the Original Work; c) to distribute or communicate copies of the Original Work and Derivative Works to the public, under any license of your choice that does not contradict the terms and conditions, including Licensor’s reserved rights and remedies, in this Academic Free License; d) to perform the Original Work publicly; and e) to display the Original Work publicly. 2) Grant of Patent License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, for the duration of the patents, to make, use, sell, offer for sale, have made, and import the Original Work and Derivative Works. 3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work. 4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior permission of the Licensor. Except as expressly stated herein, nothing in this License grants any license to Licensor’s trademarks, copyrights, patents, trade secrets or any other intellectual property. No patent license is granted to make, use, sell, offer for sale, have made, or import embodiments of any patent claims other than the licensed claims defined in Section 2. No license is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under terms different from this License any Original Work that Licensor otherwise would have a right to license. 5) External Deployment. The term "External Deployment" means the use, distribution, or communication of the Original Work or Derivative Works in any way such that the Original Work or Derivative Works may be used by anyone other than You, whether those works are distributed or communicated to those persons or made available as an application intended for use over a network. As an express condition for the grants of license hereunder, You must treat any External Deployment by You of the Original Work or a Derivative Work as a distribution under section 1(c). 6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent, or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work. 7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately preceding sentence, the Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of non-infringement, merchantability or fitness for a particular purpose. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to the Original Work is granted by this License except under this disclaimer. 8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to anyone for any indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to the extent applicable law prohibits such limitation. 9) Acceptance and Termination. If, at any time, You expressly assented to this License, that assent indicates your clear and irrevocable acceptance of this License and all of its terms and conditions. If You distribute or communicate copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. This License conditions your rights to undertake the activities listed in Section 1, including your right to create Derivative Works based upon the Original Work, and doing so without honoring these terms and conditions is prohibited by copyright law and international treaty. Nothing in this License is intended to affect copyright exceptions and limitations (including “fair use” or “fair dealing”). This License shall terminate immediately and You may no longer exercise any of the rights granted to You by this License upon your failure to honor the conditions in Section 1(c). 10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware. 11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of copyright or patent law in the appropriate jurisdiction. This section shall survive the termination of this License. 12) Attorneys’ Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License. 13) Miscellaneous. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. 14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. 15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. 16) Modification of This License. This License is Copyright © 2005 Lawrence Rosen. Permission is granted to copy, distribute, or communicate this License without modification. Nothing in this License permits You to modify this License as applied to the Original Work or to Derivative Works. However, You may modify the text of this License and copy, distribute or communicate your modified version (the "Modified License") and apply it to other original works of authorship subject to the following conditions: (i) You may not indicate in any way that your Modified License is the "Academic Free License" or "AFL" and you may not use those names in the name of your Modified License; (ii) You must replace the notice specified in the first paragraph above with the notice "Licensed under <insert your license name here>" or with a notice of your own that is not confusingly similar to the notice in this License; and (iii) You may not claim that your original works are open source software unless your Modified License has been approved by Open Source Initiative (OSI) and You comply with its license review and certification process.

简介

仓库信息管理系统 前端:layui、jquery、echarts、thymeleaf模板引擎 后端:mysql、maven、tomcat、mybatis、springMVC、spring、SpringBoot 演示地址:http://dreamchaser.net.cn:9091 账号:123456@qq.com 密码:123456 演示地址失效可能是换服务器了,还有此项目并未写完。 展开 收起
Java
AFL-3.0
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
Java
1
https://gitee.com/ukoko/depository_manage.git
git@gitee.com:ukoko/depository_manage.git
ukoko
depository_manage
仓库信息管理系统
master

搜索帮助