12345678910111213141516171819 |
- package com.gyee.benchmarkinghive.service;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.jdbc.core.JdbcTemplate;
- import org.springframework.stereotype.Service;
- /**
- * @ClassName : GenericService
- * @Author : xieshengjie
- * @Date: 2021/6/15 17:49
- * @Description : 共用service
- */
- @Service
- public class GenericService {
- @Autowired
- protected JdbcTemplate jdbcTemplate;
- }
|