package cn.com.goldenwater.dcproj.utils; public abstract class ExcelVerifyParameter { public ExcelVerifyCollection collection; /** * 校验方法 * @throws Exception */ public abstract void doverify() throws Exception; // public ExcelVerifyParameter(ExcelVerifyCollection collection){ // this.collection = collection; // } public ExcelVerifyCollection getCollection(){ return this.collection; } public void addExcelVerifyCollection(ExcelVerifyCollection collection) { this.collection = collection; } }