30 lines
492 B
TypeScript
30 lines
492 B
TypeScript
/**
|
|
* @description: 表数据
|
|
*/
|
|
export interface TableListModel {
|
|
name: string;
|
|
description: number;
|
|
dbObjectType: number;
|
|
}
|
|
/**
|
|
* @description: 获取数据库表
|
|
*/
|
|
export interface TableListParams {
|
|
code: string;
|
|
}
|
|
/**
|
|
* @description: 表对象集合的参数
|
|
*/
|
|
export interface TableFormsParams {
|
|
dbCode: string;
|
|
tableNames: string;
|
|
}
|
|
|
|
/**
|
|
* @description: 表对象集合
|
|
*/
|
|
export interface TableFormsModel {
|
|
db_codetable: object;
|
|
db_codecolumnsList: object;
|
|
}
|