All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.dts.sdk.util.Dml Maven / Gradle / Ivy

package com.github.dts.sdk.util;

import java.util.List;
import java.util.Map;

public interface Dml {
    default SQL sql() {
        return SQL.DEFAULT_BUILDER.convert(this);
    }

    default String getSql() {
        return null;
    }

    default Boolean getDdl() {
        return false;
    }

    String getTableName();

    String getDatabase();

    List getPkNames();

    Long getEs();

    Long getTs();

    String getType();

    Map getOld();

    Map getData();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy