新增注册模块

This commit is contained in:
wanggeng888 2021-04-29 20:55:15 +08:00
parent fcfc105942
commit 6026def180
3 changed files with 38 additions and 0 deletions

View File

@ -31,6 +31,7 @@
<module>basic-properties</module>
<module>module-article</module>
<module>module-wechat</module>
<module>register-base</module>
</modules>
<packaging>pom</packaging>

23
register-base/pom.xml Normal file
View 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>

View File

@ -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 {
}