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

30 lines
492 B
TypeScript
Raw Normal View History

2024-04-22 14:36:56 +08:00
/**
* @description:
*/
2024-04-25 14:59:20 +08:00
export interface TableListModel {
2024-04-22 14:36:56 +08:00
name: string;
description: number;
dbObjectType: number;
}
/**
* @description:
*/
export interface TableListParams {
code: string;
}
/**
* @description:
*/
2024-04-25 14:59:20 +08:00
export interface TableFormsParams {
2024-04-22 14:36:56 +08:00
dbCode: string;
tableNames: string;
}
/**
* @description:
*/
2024-04-25 14:59:20 +08:00
export interface TableFormsModel {
2024-04-22 14:36:56 +08:00
db_codetable: object;
2024-04-25 14:59:20 +08:00
db_codecolumnsList: object;
}