feat(sis): 新增个人门禁授权功能
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
2025-07-24 19:04:44 +08:00
parent a1942c34cb
commit f2aafe220f
24 changed files with 519 additions and 377 deletions

29
ruoyi-api/sis-api/pom.xml Normal file
View File

@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.dromara</groupId>
<artifactId>ruoyi-api</artifactId>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>sis-api</artifactId>
<description>
安防api模块
</description>
<dependencies>
<!-- RuoYi Common Core-->
<dependency>
<groupId>org.dromara</groupId>
<artifactId>ruoyi-common-core</artifactId>
</dependency>
</dependencies>
</project>

View File

@@ -0,0 +1,13 @@
package org.dromara.sis.api;
import org.dromara.sis.api.domain.RemotePersonAuth;
/**
* @author lsm
* @apiNote RemoteSisAuth
* @since 2025/7/24
*/
public interface RemoteSisAuth {
Long personAuth(RemotePersonAuth personAuth);
}

View File

@@ -0,0 +1,39 @@
package org.dromara.sis.api.domain;
import lombok.Data;
import java.util.Date;
/**
* @author lsm
* @apiNote RemotePersonAuth
* @since 2025/7/24
*/
@Data
public class RemotePersonAuth {
private Long id;
private String name;
private Integer sex;
private String phone;
private String email;
private Integer cardType = 1;
private String idCardNumber;
private String ossId;
private String carNumber;
private Long authGroupId;
private Date begDate;
private Date endDate;
}