ShiJiTianKongDiPingTai/src/api/sys/model/flowPenalModel.ts

29 lines
492 B
TypeScript
Raw Normal View History

2024-04-22 14:36:56 +08:00
/**
* @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
}