com.github.yogurt.sample.test.service.impl.TestServiceImpl Maven / Gradle / Ivy
The newest version!
package com.github.yogurt.sample.test.service.impl;
import com.github.yogurt.core.service.impl.BaseServiceImpl;
import com.github.yogurt.sample.test.dao.TestDAO;
import com.github.yogurt.sample.test.po.TestPO;
import com.github.yogurt.sample.test.service.TestService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import lombok.extern.slf4j.Slf4j;
/**
* @author Administrator
*/
@Slf4j
@Service("testService")
public class TestServiceImpl extends BaseServiceImpl implements TestService {
@Autowired
private TestDAO testDAO;
}