12345678910111213141516171819 |
- package com.vcarecity.cvs.service.impl;
-
- import com.vcarecity.cvs.service.ResultHandlerService;
- import lombok.extern.slf4j.Slf4j;
-
- import java.util.List;
-
- /**
- * @author Kerry on 19/12/03
- */
-
- @Slf4j
- public class LogResultHandlerServiceImpl implements ResultHandlerService {
- @Override
- public <T> void resultHandler(String table, String[] header, List<T> dataList) throws Exception {
- logger.debug("LogResultHandlerServiceImpl.resultHandler. table = {}, header = {}, dataList = {}", table, header, dataList);
- }
- }
|