ResultTransformer.java 534 B

1234567891011121314151617181920212223242526272829303132
  1. package com.primeton.filetransfer.server.template;
  2. import java.sql.SQLException;
  3. /**
  4. *
  5. * JDBC ResultSet 转 Entity Object 快捷方法
  6. *
  7. * <pre>
  8. *
  9. * Created by zhaopx.
  10. * User: zhaopx
  11. * Date: 2022/3/7
  12. * Time: 下午4:02
  13. * Vendor: primeton.com
  14. *
  15. * </pre>
  16. *
  17. * @author zhaopx
  18. */
  19. public interface ResultTransformer<T> {
  20. /**
  21. * 转换
  22. * @param tuple
  23. * @param aliases
  24. * @return
  25. * @throws SQLException
  26. */
  27. public T transformTuple(Object tuple[], String aliases[]) throws SQLException;
  28. }