Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
M
mini-wms
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Members
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
周海峰
mini-wms
Commits
9f1b332c
Commit
9f1b332c
authored
Nov 28, 2025
by
yubin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增inventory模块
parent
7ade8813
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
43 行增加
和
2 行删除
+43
-2
pom.xml
+8
-0
ruoyi-admin/pom.xml
+6
-0
ruoyi-admin/src/main/resources/application-druid.yml
+2
-2
ruoyi-inventory/pom.xml
+27
-0
没有找到文件。
pom.xml
View file @
9f1b332c
...
...
@@ -218,6 +218,13 @@
<version>
${ruoyi.version}
</version>
</dependency>
<!-- 库存模块-->
<dependency>
<groupId>
com.ruoyi
</groupId>
<artifactId>
ruoyi-inventory
</artifactId>
<version>
${ruoyi.version}
</version>
</dependency>
</dependencies>
</dependencyManagement>
...
...
@@ -228,6 +235,7 @@
<module>
ruoyi-quartz
</module>
<module>
ruoyi-generator
</module>
<module>
ruoyi-common
</module>
<module>
ruoyi-inventory
</module>
</modules>
<packaging>
pom
</packaging>
...
...
ruoyi-admin/pom.xml
View file @
9f1b332c
...
...
@@ -61,6 +61,12 @@
<artifactId>
ruoyi-generator
</artifactId>
</dependency>
<!-- 库存模块-->
<dependency>
<groupId>
com.ruoyi
</groupId>
<artifactId>
ruoyi-inventory
</artifactId>
</dependency>
</dependencies>
<build>
...
...
ruoyi-admin/src/main/resources/application-druid.yml
View file @
9f1b332c
...
...
@@ -6,9 +6,9 @@ spring:
druid
:
# 主库数据源
master
:
url
:
jdbc:mysql://
localhost:3306/ry-vue
?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
url
:
jdbc:mysql://
demo.docmis.cn:23500/inventory_manager
?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username
:
root
password
:
password
password
:
'
!QAZ2wsx#EDC2022'
# 从库数据源
slave
:
# 从数据源开关/默认关闭
...
...
ruoyi-inventory/pom.xml
0 → 100644
View file @
9f1b332c
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<parent>
<artifactId>
ruoyi
</artifactId>
<groupId>
com.ruoyi
</groupId>
<version>
3.9.0
</version>
<relativePath>
../pom.xml
</relativePath>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
ruoyi-inventory
</artifactId>
<description>
inventory系统模块
</description>
<dependencies>
<!-- 通用工具类 -->
<dependency>
<groupId>
com.ruoyi
</groupId>
<artifactId>
ruoyi-common
</artifactId>
</dependency>
</dependencies>
</project>
\ No newline at end of file
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论