This commit is contained in:
2025-06-18 16:50:58 +08:00
parent 1262d4c745
commit 06a0e3649d
46 changed files with 3048 additions and 545 deletions

View File

@@ -1,11 +1,6 @@
import type { PageQuery, BaseEntity } from '#/api/common';
export interface E8ConfigVO {
/**
*
*/
id: string | number;
/**
* E8 名称
*/
@@ -26,16 +21,11 @@ export interface E8ConfigVO {
*/
orgCode: string;
/**
* 数据状态1有效0无效
*/
dataState: number;
}
export interface E8ConfigForm extends BaseEntity {
/**
*
* ID
*/
id?: string | number;
@@ -59,11 +49,6 @@ export interface E8ConfigForm extends BaseEntity {
*/
orgCode?: string;
/**
* 数据状态1有效0无效
*/
dataState?: number;
}
export interface E8ConfigQuery extends PageQuery {

View File

@@ -0,0 +1,86 @@
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;
}