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,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);
}