Files
admin-vben5/apps/web-antd/src/api/property/e8Config/model.d.ts
2025-06-19 09:50:46 +08:00

100 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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