feat(all): 搭建基本框架和模块
This commit is contained in:
14
gringotts-core/pom.xml
Normal file
14
gringotts-core/pom.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<?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.eshore</groupId>
|
||||
<artifactId>gringotts</artifactId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>gringotts-core</artifactId>
|
||||
|
||||
</project>
|
||||
@@ -0,0 +1,12 @@
|
||||
package com.eshore.gringotts.core;
|
||||
|
||||
/**
|
||||
* 固定字段
|
||||
*
|
||||
* @author lanyuanxiaoyao
|
||||
* @date 2024-11-14
|
||||
*/
|
||||
public interface Constants {
|
||||
String PROJECT_NAME = "gringotts";
|
||||
String TABLE_PREFIX = PROJECT_NAME + "_";
|
||||
}
|
||||
Reference in New Issue
Block a user