| 1234567891011121314151617181920212223242526272829 |
- package cn.com.goldenwater.dcproj.service.impl.tac;
- import cn.com.goldenwater.core.service.AbstractCrudService;
- import cn.com.goldenwater.dcproj.dao.TacSlbLawBookDao;
- import cn.com.goldenwater.dcproj.model.TacSlbLawBook;
- import cn.com.goldenwater.dcproj.param.TacSlbLawBookParam;
- import cn.com.goldenwater.dcproj.service.TacSlbLawBookService;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import org.springframework.transaction.annotation.Transactional;
- /**
- * @author lune
- * @date 2019-9-25
- */
- @Service
- @Transactional
- public class TacSlbLawBookServiceImpl extends AbstractCrudService<TacSlbLawBook, TacSlbLawBookParam> implements TacSlbLawBookService {
- @Autowired
- private TacSlbLawBookDao tacSlbLawBookDao;
- public TacSlbLawBookServiceImpl(TacSlbLawBookDao tacSlbLawBookDao) {
- super(tacSlbLawBookDao);
- this.tacSlbLawBookDao = tacSlbLawBookDao;
- }
- }
|