bea354d7e347e553fbb911b100f2bc0a039088d2.svn-base 617 B

123456789101112131415161718192021
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.dto.TacSlbLawIndexDto;
  4. import cn.com.goldenwater.dcproj.model.TacSlbLawIndex;
  5. import cn.com.goldenwater.dcproj.param.TacSlbLawIndexParam;
  6. import java.util.List;
  7. /**
  8. * @author lune
  9. * @date 2019-9-25
  10. */
  11. public interface TacSlbLawIndexService extends CrudService<TacSlbLawIndex, TacSlbLawIndexParam> {
  12. List<TacSlbLawIndex> findDocs(int bookId, int docId);
  13. List<TacSlbLawIndexDto> findDocs(int bookId);
  14. // ------------------------- 自定方法 -------------------------
  15. }