初版代码’

This commit is contained in:
2025-06-19 09:50:46 +08:00
parent 06a0e3649d
commit d980195302
20 changed files with 470 additions and 163 deletions

View File

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