| 123456789101112131415161718192021 |
- 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<TacSlbLawIndex, TacSlbLawIndexParam> {
- List<TacSlbLawIndex> findDocs(int bookId, int docId);
- List<TacSlbLawIndexDto> findDocs(int bookId);
- // ------------------------- 自定方法 -------------------------
- }
|