b0dd6ef80b22a04accad5147776890257210e560.svn-base 513 B

12345678910111213141516
  1. package cn.com.goldenwater.dcproj.dao;
  2. import cn.com.goldenwater.dcproj.model.TacSlbLawContent;
  3. import cn.com.goldenwater.core.persistence.CrudDao;
  4. import cn.com.goldenwater.dcproj.param.TacSlbLawContentParam;
  5. import org.apache.ibatis.annotations.Param;
  6. import org.springframework.stereotype.Repository;
  7. import java.util.List;
  8. @Repository
  9. public interface TacSlbLawContentDao extends CrudDao<TacSlbLawContent, TacSlbLawContentParam> {
  10. List<TacSlbLawContent> findChapters(@Param("indexId") int indexId);
  11. }