Ben Lin
2024-12-28 f9eb1a419834f97a3ab0124b132de4f977b1973b
src/api/tigerapi/model/systemModel.ts
@@ -1,5 +1,6 @@
import { Ref } from 'vue';
import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel';
import { extend } from 'dayjs';
export type AD_INFO = {
  nation?: string;
@@ -341,6 +342,7 @@
export interface CustModalParams extends CustParams {
  mValues: {}; //主表数据
  others: {}; //一些其他数据
  keyCode: string;
}
export interface CustParams {
@@ -369,3 +371,18 @@
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;
}