2025-06-18 11:03:42 +08:00
|
|
|
|
import type { PageQuery, BaseEntity } from '#/api/common';
|
|
|
|
|
|
|
|
|
|
export interface E8ConfigVO {
|
2025-06-19 09:50:46 +08:00
|
|
|
|
/**
|
|
|
|
|
* 主键
|
|
|
|
|
*/
|
|
|
|
|
id: string | number;
|
|
|
|
|
|
2025-06-18 11:03:42 +08:00
|
|
|
|
/**
|
|
|
|
|
* E8 名称
|
|
|
|
|
*/
|
|
|
|
|
e8Name: string;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* E8服务地址
|
|
|
|
|
*/
|
|
|
|
|
e8ServerUrl: string;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* E8服务提供的secret
|
|
|
|
|
*/
|
|
|
|
|
e8Secret: string;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 组织编码
|
|
|
|
|
*/
|
|
|
|
|
orgCode: string;
|
|
|
|
|
|
2025-06-19 09:50:46 +08:00
|
|
|
|
/**
|
|
|
|
|
* 数据状态:1有效,0无效
|
|
|
|
|
*/
|
|
|
|
|
dataState: number;
|
|
|
|
|
|
2025-06-18 11:03:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface E8ConfigForm extends BaseEntity {
|
|
|
|
|
/**
|
2025-06-19 09:50:46 +08:00
|
|
|
|
* 主键
|
2025-06-18 11:03:42 +08:00
|
|
|
|
*/
|
|
|
|
|
id?: string | number;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* E8 名称
|
|
|
|
|
*/
|
|
|
|
|
e8Name?: string;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* E8服务地址
|
|
|
|
|
*/
|
|
|
|
|
e8ServerUrl?: string;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* E8服务提供的secret
|
|
|
|
|
*/
|
|
|
|
|
e8Secret?: string;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 组织编码
|
|
|
|
|
*/
|
|
|
|
|
orgCode?: string;
|
|
|
|
|
|
2025-06-19 09:50:46 +08:00
|
|
|
|
/**
|
|
|
|
|
* 数据状态:1有效,0无效
|
|
|
|
|
*/
|
|
|
|
|
dataState?: number;
|
|
|
|
|
|
2025-06-18 11:03:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface E8ConfigQuery extends PageQuery {
|
|
|
|
|
/**
|
|
|
|
|
* E8 名称
|
|
|
|
|
*/
|
|
|
|
|
e8Name?: string;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* E8服务地址
|
|
|
|
|
*/
|
|
|
|
|
e8ServerUrl?: string;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* E8服务提供的secret
|
|
|
|
|
*/
|
|
|
|
|
e8Secret?: string;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 组织编码
|
|
|
|
|
*/
|
|
|
|
|
orgCode?: string;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 数据状态:1有效,0无效
|
|
|
|
|
*/
|
|
|
|
|
dataState?: number;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 日期范围参数
|
|
|
|
|
*/
|
|
|
|
|
params?: any;
|
|
|
|
|
}
|