Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
isoft_psa
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
王飞
isoft_psa
Commits
956b1763
Commit
956b1763
authored
Feb 28, 2025
by
祁正
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
创建psa模块
parent
d91c1f0e
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
55 additions
and
1 deletion
+55
-1
pom.xml
pom.xml
+8
-0
pom.xml
ruoyi-admin/pom.xml
+7
-0
RuoYiApplication.java
ruoyi-admin/src/main/java/com/ruoyi/RuoYiApplication.java
+1
-1
pom.xml
ruoyi-psa/pom.xml
+26
-0
Test123Controller.java
...src/main/java/com/ruoyi/controller/Test123Controller.java
+13
-0
No files found.
pom.xml
View file @
956b1763
...
...
@@ -176,6 +176,13 @@
<version>
${ruoyi.version}
</version>
</dependency>
<!-- pas业务模块-->
<dependency>
<groupId>
com.ruoyi
</groupId>
<artifactId>
ruoyi-psa
</artifactId>
<version>
${ruoyi.version}
</version>
</dependency>
<!-- 通用工具-->
<dependency>
<groupId>
com.ruoyi
</groupId>
...
...
@@ -217,6 +224,7 @@
<module>
ruoyi-generator
</module>
<module>
ruoyi-common
</module>
<module>
ruoyi-flowable
</module>
<module>
ruoyi-psa
</module>
</modules>
<packaging>
pom
</packaging>
...
...
ruoyi-admin/pom.xml
View file @
956b1763
...
...
@@ -24,6 +24,13 @@
<optional>
true
</optional>
<!-- 表示依赖不会传递 -->
</dependency>
<!-- pas业务模块-->
<dependency>
<groupId>
com.ruoyi
</groupId>
<artifactId>
ruoyi-psa
</artifactId>
</dependency>
<!-- swagger3-->
<dependency>
<groupId>
io.springfox
</groupId>
...
...
ruoyi-admin/src/main/java/com/ruoyi/RuoYiApplication.java
View file @
956b1763
...
...
@@ -9,7 +9,7 @@ import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
*
* @author ruoyi
*/
@SpringBootApplication
(
exclude
=
{
DataSourceAutoConfiguration
.
class
})
@SpringBootApplication
(
exclude
=
{
DataSourceAutoConfiguration
.
class
}
,
scanBasePackages
=
{
"com.ruoyi"
}
)
public
class
RuoYiApplication
{
public
static
void
main
(
String
[]
args
)
...
...
ruoyi-psa/pom.xml
0 → 100644
View file @
956b1763
<?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"
>
<modelVersion>
4.0.0
</modelVersion>
<parent>
<groupId>
com.ruoyi
</groupId>
<artifactId>
ruoyi
</artifactId>
<version>
3.8.8
</version>
</parent>
<artifactId>
ruoyi-psa
</artifactId>
<dependencies>
<dependency>
<groupId>
com.ruoyi
</groupId>
<artifactId>
ruoyi-common
</artifactId>
</dependency>
</dependencies>
<properties>
<maven.compiler.source>
17
</maven.compiler.source>
<maven.compiler.target>
17
</maven.compiler.target>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
</properties>
</project>
\ No newline at end of file
ruoyi-psa/src/main/java/com/ruoyi/controller/Test123Controller.java
0 → 100644
View file @
956b1763
package
com
.
ruoyi
.
controller
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.RestController
;
@RestController
public
class
Test123Controller
{
@GetMapping
(
"/test"
)
public
String
test
(){
return
"test"
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment