-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
95 changed files
with
2,612 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?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>srb</artifactId> | ||
<groupId>com.atguigu</groupId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>guigu-common</artifactId> | ||
|
||
|
||
<dependencies> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-web</artifactId> | ||
</dependency> | ||
|
||
<!--lombok用来简化实体类:需要安装lombok插件--> | ||
<dependency> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
</dependency> | ||
</dependencies> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?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>srb</artifactId> | ||
<groupId>com.atguigu</groupId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>service-base</artifactId> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.atguigu</groupId> | ||
<artifactId>guigu-common</artifactId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
</dependency> | ||
<!--swagger--> | ||
<dependency> | ||
<groupId>io.springfox</groupId> | ||
<artifactId>springfox-swagger2</artifactId> | ||
</dependency> | ||
<!--swagger ui--> | ||
<dependency> | ||
<groupId>io.springfox</groupId> | ||
<artifactId>springfox-swagger-ui</artifactId> | ||
</dependency> | ||
</dependencies> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?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>srb</artifactId> | ||
<groupId>com.atguigu</groupId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>service-core</artifactId> | ||
|
||
<dependencies> | ||
|
||
<dependency> | ||
<groupId>com.atguigu</groupId> | ||
<artifactId>service-base</artifactId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
</dependency> | ||
|
||
<!--mysql--> | ||
<dependency> | ||
<groupId>mysql</groupId> | ||
<artifactId>mysql-connector-java</artifactId> | ||
</dependency> | ||
|
||
<!--mybatis-plus--> | ||
<dependency> | ||
<groupId>com.baomidou</groupId> | ||
<artifactId>mybatis-plus-boot-starter</artifactId> | ||
</dependency> | ||
<!--mybatis-plus 代码生成器--> | ||
<dependency> | ||
<groupId>com.baomidou</groupId> | ||
<artifactId>mybatis-plus-generator</artifactId> | ||
</dependency> | ||
<!-- Mybatis Plus 代码生成器模板引擎, --> | ||
<dependency> | ||
<groupId>org.apache.velocity</groupId> | ||
<artifactId>velocity-engine-core</artifactId> | ||
</dependency> | ||
</dependencies> | ||
</project> |
21 changes: 21 additions & 0 deletions
21
service-core/src/main/java/com/atguigu/srb/core/controller/BorrowInfoController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package com.atguigu.srb.core.controller; | ||
|
||
|
||
import org.springframework.web.bind.annotation.RequestMapping; | ||
|
||
import org.springframework.web.bind.annotation.RestController; | ||
|
||
/** | ||
* <p> | ||
* 借款信息表 前端控制器 | ||
* </p> | ||
* | ||
* @author gaoguanqi | ||
* @since 2021-04-22 | ||
*/ | ||
@RestController | ||
@RequestMapping("/borrowInfo") | ||
public class BorrowInfoController { | ||
|
||
} | ||
|
21 changes: 21 additions & 0 deletions
21
service-core/src/main/java/com/atguigu/srb/core/controller/BorrowerAttachController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package com.atguigu.srb.core.controller; | ||
|
||
|
||
import org.springframework.web.bind.annotation.RequestMapping; | ||
|
||
import org.springframework.web.bind.annotation.RestController; | ||
|
||
/** | ||
* <p> | ||
* 借款人上传资源表 前端控制器 | ||
* </p> | ||
* | ||
* @author gaoguanqi | ||
* @since 2021-04-22 | ||
*/ | ||
@RestController | ||
@RequestMapping("/borrowerAttach") | ||
public class BorrowerAttachController { | ||
|
||
} | ||
|
21 changes: 21 additions & 0 deletions
21
service-core/src/main/java/com/atguigu/srb/core/controller/BorrowerController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package com.atguigu.srb.core.controller; | ||
|
||
|
||
import org.springframework.web.bind.annotation.RequestMapping; | ||
|
||
import org.springframework.web.bind.annotation.RestController; | ||
|
||
/** | ||
* <p> | ||
* 借款人 前端控制器 | ||
* </p> | ||
* | ||
* @author gaoguanqi | ||
* @since 2021-04-22 | ||
*/ | ||
@RestController | ||
@RequestMapping("/borrower") | ||
public class BorrowerController { | ||
|
||
} | ||
|
21 changes: 21 additions & 0 deletions
21
service-core/src/main/java/com/atguigu/srb/core/controller/DictController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package com.atguigu.srb.core.controller; | ||
|
||
|
||
import org.springframework.web.bind.annotation.RequestMapping; | ||
|
||
import org.springframework.web.bind.annotation.RestController; | ||
|
||
/** | ||
* <p> | ||
* 数据字典 前端控制器 | ||
* </p> | ||
* | ||
* @author gaoguanqi | ||
* @since 2021-04-22 | ||
*/ | ||
@RestController | ||
@RequestMapping("/dict") | ||
public class DictController { | ||
|
||
} | ||
|
Oops, something went wrong.