export interface UpdateParam {
    DB: string;
    TableName: string;
    Fields: IField[];
    AdditionSet: string;
    AdditionWhere: string;
    BeforeSQL: string;
}
export interface IField {
    selected?: boolean;
    Name: string;
    Label: string;
    Tooltip: string;
    Freeentry: boolean;
    Must: boolean;
    List: {
        Value: string;
        Label: string;
    }[];
}
