configurationCenterModal.ts
631 Bytes
import { BasicPageParams } from '/@/api/model/baseModel';
export interface ConfigurationCenterItemsModal {
id: string;
name: string;
createTime: string;
creator: string;
remark: string;
}
export type queryPageParams = BasicPageParams & {
name?: Nullable<string>;
organizationId?: Nullable<number>;
};
export interface ConfigurationModal {
items: ConfigurationCenterItemsModal[];
total: number;
}
export interface ConfigurationCenterParams {
name: string;
createTime: string;
creator: string;
remark: string;
defaultContent?: string;
}
export type ConfigurationCenterInfo = ConfigurationCenterParams;