This commit is contained in:
JeeLowCode
2024-12-31 17:22:40 +08:00
parent 2b7d95c86c
commit 718a00da8b
1891 changed files with 154772 additions and 0 deletions

View 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>${revision}</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>

View File

@@ -0,0 +1,23 @@
/*
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
本软件受适用的国家软件著作权法(包括国际条约)和开源协议 双重保护许可。
开源协议中文释意如下:
1.JeeLowCode开源版本无任何限制在遵循本开源协议Apache2.0)条款下,【允许商用】使用,不会造成侵权行为。
2.允许基于本平台软件开展业务系统开发。
3.在任何情况下,您不得使用本软件开发可能被认为与【本软件竞争】的软件。
最终解释权归http://www.jeelowcode.com
*/
package com.jeelowcode.framework.global;
/**
* 全局公共
*/
public interface JeeLowCodeBaseConstant {
String REQUEST_URL_START="/admin-api/jeelowcode";//公共请求
String BASE_PACKAGES="com.jeelowcode";//公共包名称
String BASE_PACKAGES_CODE=BASE_PACKAGES+".core";//核心包名
}