package com.yanzuoguang.db.impl; /** * 处理行数据 * @author 颜佐光 */ public interface DbRow<T> { /** * 需要处理的行 * * @param row */ void handle(T row); }