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

tk.mybatis.mapper.gensql.GenSql Maven / Gradle / Ivy

The newest version!
package tk.mybatis.mapper.gensql;

import tk.mybatis.mapper.entity.EntityColumn;
import tk.mybatis.mapper.entity.EntityTable;

/**
 * 生成 SQL,初始化时执行
 *
 * @author liuzh
 */
public interface GenSql {

    String genSql(EntityTable entityTable, EntityColumn entityColumn);

    class NULL implements GenSql {
        @Override
        public String genSql(EntityTable entityTable, EntityColumn entityColumn) {
            throw new UnsupportedOperationException();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy