38d02c6158918d6fd6c6e2afc5d246dc37bee4a9.svn-base 621 B

123456789101112131415161718192021
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.model.BisInspSafeExtApp;
  4. import cn.com.goldenwater.dcproj.model.BisInspSafeExtManage;
  5. import cn.com.goldenwater.dcproj.param.BisInspSafeExtManageParam;
  6. import com.github.pagehelper.PageInfo;
  7. import java.util.List;
  8. /**
  9. * @author lune
  10. * @date 2019-2-19
  11. */
  12. public interface BisInspSafeExtManageService extends CrudService<BisInspSafeExtManage, BisInspSafeExtManageParam> {
  13. BisInspSafeExtApp getApp(String id);
  14. // ------------------------- 自定方法 -------------------------
  15. }