com.seezoon.code.gen.dao.TableInfoDao Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of luna-code-gen Show documentation
Show all versions of luna-code-gen Show documentation
自动生成dao entity service,程序引入时候maven scope选择test
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