init
This commit is contained in:
29
jeelowcode-module/jeelowcode-module-api/pom.xml
Normal file
29
jeelowcode-module/jeelowcode-module-api/pom.xml
Normal file
@@ -0,0 +1,29 @@
|
||||
<?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>${jeelowcode.version}</version>
|
||||
</parent>
|
||||
|
||||
<groupId>com.jeelowcode</groupId>
|
||||
<artifactId>jeelowcode-module-api</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>${project.artifactId}</name>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>jakarta.servlet</groupId>
|
||||
<artifactId>jakarta.servlet-api</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.jeelowcode</groupId>
|
||||
<artifactId>jeelowcode-utils</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<version>${jeelowcode.version}</version>
|
||||
<description> 个人业务模块API </description>
|
||||
|
||||
</project>
|
||||
@@ -0,0 +1,22 @@
|
||||
|
||||
package com.jeelowcode.module.api;
|
||||
|
||||
import com.jeelowcode.framework.utils.model.ResultDataModel;
|
||||
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* 低代码 API 接口
|
||||
*/
|
||||
public interface JeeLowCodeApi {
|
||||
|
||||
//获取表单设置的授权类型
|
||||
String getDbformAuthType(Long dbFormid);
|
||||
|
||||
String getReportAuthType(String reportCode);
|
||||
|
||||
//同步数据
|
||||
void syncData(String reportCode, Map<String, Object> req, ResultDataModel pages );
|
||||
}
|
||||
Reference in New Issue
Block a user