【新增】新增对接模块

This commit is contained in:
zer0Black
2023-09-29 10:24:32 +08:00
parent 7110380a66
commit 40cfad714b
4 changed files with 44 additions and 4 deletions
+27
View File
@@ -0,0 +1,27 @@
<?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.jero.boot</groupId>
<artifactId>laws-sinotruk</artifactId>
<version>2.5.1</version>
</parent>
<artifactId>laws-modules-docking</artifactId>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.jero.boot</groupId>
<artifactId>laws-modules</artifactId>
</dependency>
</dependencies>
</project>
@@ -0,0 +1,7 @@
package com.jero.modules.docking.iam.controller;
/**
* IAM同步的控制器,提供用户、组织、菜单和权限的同步
*/
public class SyncIamController {
}