| 12345678910111213141516 |
- package cn.com.goldenwater.dcproj.dao;
- import cn.com.goldenwater.dcproj.model.TacSlbLawContent;
- import cn.com.goldenwater.core.persistence.CrudDao;
- import cn.com.goldenwater.dcproj.param.TacSlbLawContentParam;
- import org.apache.ibatis.annotations.Param;
- import org.springframework.stereotype.Repository;
- import java.util.List;
- @Repository
- public interface TacSlbLawContentDao extends CrudDao<TacSlbLawContent, TacSlbLawContentParam> {
- List<TacSlbLawContent> findChapters(@Param("indexId") int indexId);
- }
|