| 12345678910111213141516171819 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.TacSlbLawContent;
- import cn.com.goldenwater.dcproj.param.TacSlbLawContentParam;
- import java.util.List;
- /**
- * @author lune
- * @date 2019-9-25
- */
- public interface TacSlbLawContentService extends CrudService<TacSlbLawContent, TacSlbLawContentParam> {
- List<TacSlbLawContent> findChapters(int indexId);
- // ------------------------- 自定方法 -------------------------
- }
|