增加门禁授权操作
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
15683799673
2025-06-30 06:16:40 +08:00
parent ffb32c817a
commit 285ac3e0ed
22 changed files with 219 additions and 2636 deletions

View File

@@ -1,86 +0,0 @@
export interface E8ConfigVO {
/**
* E8 名称
*/
e8Name: string;
/**
* E8服务地址
*/
e8ServerUrl: string;
/**
* E8服务提供的secret
*/
e8Secret: string;
/**
* 组织编码
*/
orgCode: string;
}
export interface E8ConfigForm extends BaseEntity {
/**
* ID
*/
id?: string | number;
/**
* E8 名称
*/
e8Name?: string;
/**
* E8服务地址
*/
e8ServerUrl?: string;
/**
* E8服务提供的secret
*/
e8Secret?: string;
/**
* 组织编码
*/
orgCode?: string;
}
export interface E8ConfigQuery extends PageQuery {
/**
* E8 名称
*/
e8Name?: string;
/**
* E8服务地址
*/
e8ServerUrl?: string;
/**
* E8服务提供的secret
*/
e8Secret?: string;
/**
* 组织编码
*/
orgCode?: string;
/**
* 数据状态1有效0无效
*/
dataState?: number;
/**
* 日期范围参数
*/
params?: any;
}