package cn.com.goldenwater.dcproj.service; import cn.com.goldenwater.core.service.CrudService; import cn.com.goldenwater.dcproj.dto.TacSlbLawIndexDto; import cn.com.goldenwater.dcproj.model.TacSlbLawIndex; import cn.com.goldenwater.dcproj.param.TacSlbLawIndexParam; import java.util.List; /** * @author lune * @date 2019-9-25 */ public interface TacSlbLawIndexService extends CrudService { List findDocs(int bookId, int docId); List findDocs(int bookId); // ------------------------- 自定方法 ------------------------- }