| 1234567891011121314151617181920212223242526272829303132333435 |
- package cn.com.goldenwater.dcproj.service.impl.tac;
- import cn.com.goldenwater.core.service.AbstractCrudService;
- import cn.com.goldenwater.dcproj.dao.TacSlbLawContentDao;
- import cn.com.goldenwater.dcproj.model.TacSlbLawContent;
- import cn.com.goldenwater.dcproj.param.TacSlbLawContentParam;
- import cn.com.goldenwater.dcproj.service.TacSlbLawContentService;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import org.springframework.transaction.annotation.Transactional;
- import java.util.List;
- /**
- * @author lune
- * @date 2019-9-25
- */
- @Service
- @Transactional
- public class TacSlbLawContentServiceImpl extends AbstractCrudService<TacSlbLawContent, TacSlbLawContentParam> implements TacSlbLawContentService {
- @Autowired
- private TacSlbLawContentDao tacSlbLawContentDao;
- public TacSlbLawContentServiceImpl(TacSlbLawContentDao tacSlbLawContentDao) {
- super(tacSlbLawContentDao);
- this.tacSlbLawContentDao = tacSlbLawContentDao;
- }
- @Override
- public List<TacSlbLawContent> findChapters(int indexId) {
- return tacSlbLawContentDao.findChapters(indexId);
- }
- }
|