| 12345678910111213141516171819202122 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.BisInspScheme;
- import cn.com.goldenwater.dcproj.param.BisInspSchemeParam;
- import com.github.pagehelper.PageInfo;
- import java.util.List;
- /**
- * @author lune
- * @date 2019-2-19
- */
- public interface BisInspSchemeService extends CrudService<BisInspScheme, BisInspSchemeParam> {
- List<BisInspScheme> getDCFAListByOrgId(String id);
- List<BisInspScheme> getDCFAListByType(String type);
- // ------------------------- 自定方法 -------------------------
- }
|