package com.highdatas.mdm.service; import org.apache.hadoop.hbase.client.Result; import org.springframework.stereotype.Service; import java.util.List; /** * @author kimi * @description * @date 2020-03-31 16:01 */ @Service public interface HBaseService { List getRowKeyAndColumn(String tableName, String startRowkey, String stopRowkey, String column, String qualifier); List getListRowkeyData(String tableName, List rowKeys, String familyColumn, String column); void createTable(String tableName); }