新增注册模块
This commit is contained in:
parent
fcfc105942
commit
6026def180
1
pom.xml
1
pom.xml
@ -31,6 +31,7 @@
|
|||||||
<module>basic-properties</module>
|
<module>basic-properties</module>
|
||||||
<module>module-article</module>
|
<module>module-article</module>
|
||||||
<module>module-wechat</module>
|
<module>module-wechat</module>
|
||||||
|
<module>register-base</module>
|
||||||
</modules>
|
</modules>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
23
register-base/pom.xml
Normal file
23
register-base/pom.xml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
<?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>wg-basic</artifactId>
|
||||||
|
<groupId>ink.wgink</groupId>
|
||||||
|
<version>1.0-SNAPSHOT</version>
|
||||||
|
</parent>
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
<artifactId>register-base</artifactId>
|
||||||
|
<description>实现用户注册的相关逻辑</description>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>ink.wgink</groupId>
|
||||||
|
<artifactId>service-user</artifactId>
|
||||||
|
<version>1.0-SNAPSHOT</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
</project>
|
@ -0,0 +1,14 @@
|
|||||||
|
package ink.wgink.register.base.controller.api;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* When you feel like quitting. Think about why you started
|
||||||
|
* 当你想要放弃的时候,想想当初你为何开始
|
||||||
|
*
|
||||||
|
* @ClassName: RegisterController
|
||||||
|
* @Description: 注册
|
||||||
|
* @Author: wanggeng
|
||||||
|
* @Date: 2021/4/29 6:12 下午
|
||||||
|
* @Version: 1.0
|
||||||
|
*/
|
||||||
|
public class RegisterController {
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user