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

com.seezoon.code.gen.dao.TableInfoDao Maven / Gradle / Ivy

The newest version!
package com.seezoon.code.gen.dao;

import java.util.List;

import com.seezoon.code.gen.dto.DbPk;
import com.seezoon.code.gen.dto.DbTable;
import com.seezoon.code.gen.dto.DbTableColumn;
import com.seezoon.luna.dao.BaseDao;

public interface TableInfoDao extends BaseDao {

	public DbTable findTable(String tableName);
	public List findColumnByTableName(String tableName);
	public List findPkType(String tableName);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy