export type VauleType = "string" | "float64" | "int" | '[]string' | '[]int'; export type OptionType = | "eq" | "neq" | "gt" | "lt" | "null" | "notnull" | "like" | "in" | "notin" | "or" export declare interface OptionData { option?: OptionType; //where条件使用 valueType?: VauleType; value?: T; filed: string } export type OptionFn = (data: OptionData) => OptionData export enum DATE_FORMAT { YmdHis = "YYYY-MM-DD HH:mm:ss", Ymd = "YYY-MM-DD", His = "HH:mm:ss", md = "MM-DD" } export interface Common { statusCode: number; message: string; data: T; }