3e40953fcc10cbdece9f2e42d5386082e7396343.svn-base 517 B

12345678910111213141516171819
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.model.TacSlbLawContent;
  4. import cn.com.goldenwater.dcproj.param.TacSlbLawContentParam;
  5. import java.util.List;
  6. /**
  7. * @author lune
  8. * @date 2019-9-25
  9. */
  10. public interface TacSlbLawContentService extends CrudService<TacSlbLawContent, TacSlbLawContentParam> {
  11. List<TacSlbLawContent> findChapters(int indexId);
  12. // ------------------------- 自定方法 -------------------------
  13. }