GenericService.java 427 B

12345678910111213141516171819
  1. package com.gyee.benchmarkinghive.service;
  2. import org.springframework.beans.factory.annotation.Autowired;
  3. import org.springframework.jdbc.core.JdbcTemplate;
  4. import org.springframework.stereotype.Service;
  5. /**
  6. * @ClassName : GenericService
  7. * @Author : xieshengjie
  8. * @Date: 2021/6/15 17:49
  9. * @Description : 共用service
  10. */
  11. @Service
  12. public class GenericService {
  13. @Autowired
  14. protected JdbcTemplate jdbcTemplate;
  15. }