init
This commit is contained in:
24
jeelowcode-framework/jeelowcode-global/pom.xml
Normal file
24
jeelowcode-framework/jeelowcode-global/pom.xml
Normal file
@@ -0,0 +1,24 @@
|
||||
<?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>jeelowcode-framework</artifactId>
|
||||
<groupId>com.jeelowcode</groupId>
|
||||
<version>${jeelowcode.version}</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>jeelowcode-global</artifactId>
|
||||
<name>${project.artifactId}</name>
|
||||
<version>${jeelowcode.version}</version>
|
||||
<packaging>jar</packaging>
|
||||
<description> JeeLowCode低代码平台 - 全局常量 </description>
|
||||
|
||||
<dependencies>
|
||||
|
||||
|
||||
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
@@ -0,0 +1,17 @@
|
||||
|
||||
package com.jeelowcode.framework.global;
|
||||
|
||||
/**
|
||||
* 全局公共
|
||||
*/
|
||||
public interface JeeLowCodeBaseConstant {
|
||||
|
||||
//多数据源
|
||||
String DS_JEELOWCODE="jeelowcode";//低代码
|
||||
String DS_MASTER="master";//主服务
|
||||
|
||||
String REQUEST_URL_START="/jeelowcode";//公共请求
|
||||
String BASE_PACKAGES="com.jeelowcode";//公共包名称
|
||||
String BASE_PACKAGES_CODE=BASE_PACKAGES+".core";//核心包名
|
||||
String BASE_PACKAGES_MODULE = BASE_PACKAGES+".module";//个人业务模块
|
||||
}
|
||||
Reference in New Issue
Block a user