| | |
| | | import { Ref } from 'vue'; |
| | | import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel'; |
| | | import { extend } from 'dayjs'; |
| | | |
| | | export type AD_INFO = { |
| | | nation?: string; |
| | |
| | | export interface CustModalParams extends CustParams { |
| | | mValues: {}; //主表数据 |
| | | others: {}; //一些其他数据 |
| | | keyCode: string; |
| | | } |
| | | |
| | | export interface CustParams { |
| | |
| | | export type EntityListGetResultModel = BasicFetchResult<EntityPropertie>; |
| | | |
| | | export type FunctionType = (...args: any[]) => any; |
| | | |
| | | export interface BaseImportInput{ |
| | | typeFullName: string; |
| | | } |
| | | |
| | | export interface ImportEntityValidate extends BaseImportInput { |
| | | EntityJson: string; |
| | | CheckJson: string; |
| | | where: string; |
| | | typeFullName: string; |
| | | } |
| | | |
| | | export interface ImportInput extends BaseImportInput{ |
| | | EntityJson: string; |
| | | } |