mirror of
https://gitee.com/jeelowcode/JeeLowCode.git
synced 2026-06-24 03:15:55 +08:00
v1.0.0
This commit is contained in:
19
jeelowcode-module/jeelowcode-module-api/pom.xml
Normal file
19
jeelowcode-module/jeelowcode-module-api/pom.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<?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.jeelowcode</groupId>
|
||||
<artifactId>jeelowcode-module</artifactId>
|
||||
<version>${revision}</version>
|
||||
</parent>
|
||||
|
||||
<groupId>com.jeelowcode</groupId>
|
||||
<artifactId>jeelowcode-module-api</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>${project.artifactId}</name>
|
||||
<version>${jeelowcode.version}</version>
|
||||
<description> 个人业务模块API </description>
|
||||
|
||||
</project>
|
||||
@@ -0,0 +1,28 @@
|
||||
/*
|
||||
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.module.api;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 低代码 API 接口
|
||||
*/
|
||||
public interface JeeLowCodeApi {
|
||||
|
||||
//获取表单设置的授权类型
|
||||
String getDbformAuthType(Long dbFormid);
|
||||
|
||||
String getReportAuthType(String reportCode);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user