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 implements TacSlbLawContentService { @Autowired private TacSlbLawContentDao tacSlbLawContentDao; public TacSlbLawContentServiceImpl(TacSlbLawContentDao tacSlbLawContentDao) { super(tacSlbLawContentDao); this.tacSlbLawContentDao = tacSlbLawContentDao; } @Override public List findChapters(int indexId) { return tacSlbLawContentDao.findChapters(indexId); } }