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

io.github.icodegarden.nutrient.lang.query.TableDataCountStorage Maven / Gradle / Ivy

The newest version!
package io.github.icodegarden.nutrient.lang.query;
import java.util.List;

import io.github.icodegarden.nutrient.lang.exception.DuplicateKeyException;

/**
 * 
 * @author Fangfang.Xu
 *
 */
public interface TableDataCountStorage {
	
	void add(TableDataCountPO po) throws DuplicateKeyException;

	int updateCount(String tableName, long count);
	
	List findAll();
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy