初版代码’
This commit is contained in:
@@ -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 {
|
||||
|
Reference in New Issue
Block a user