Commit 34d5144c by 王军业

12215154

1 parent bf3fc8f1
package com.vion.financial.handler;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.vion.financial.excel.ImportModel;
import cn.afterturn.easypoi.handler.impl.ExcelDataHandlerDefaultImpl;
public class ImportHandle extends ExcelDataHandlerDefaultImpl<ImportModel>{
private static final Logger log=LoggerFactory.getLogger(ImportHandle.class);
public Object handler(ImportModel importModel,String name,Object value) {
log.info(name+":"+value);
return super.importHandler(importModel, name, value);
}
}
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!