78fd149f9558cfeff469755f19eda4ee2daab9ca.svn-base 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package cn.com.goldenwater.dcproj.dao;
  2. import cn.com.goldenwater.core.persistence.CrudDao;
  3. import cn.com.goldenwater.dcproj.dto.BisInspRgstrDto;
  4. import cn.com.goldenwater.dcproj.model.BisInspSamrmpRgstr;
  5. import cn.com.goldenwater.dcproj.param.BisInspSamrmpRgstrParam;
  6. import cn.com.goldenwater.dcproj.param.PagePersObjParam;
  7. import cn.com.goldenwater.dcproj.param.TypeParam;
  8. import org.springframework.stereotype.Repository;
  9. import java.util.List;
  10. /**
  11. * @author lune
  12. * @date 2020-9-11
  13. */
  14. @Repository
  15. public interface BisInspSamrmpRgstrDao extends CrudDao<BisInspSamrmpRgstr, BisInspSamrmpRgstrParam> {
  16. /**
  17. * ��ȡ��������
  18. * @return
  19. */
  20. List<BisInspSamrmpRgstr> findAll();
  21. /**
  22. * ����ɸѡ������ȡ����
  23. * @param BisInspSamrmpRgstrParam
  24. * @return
  25. */
  26. int selectCount(BisInspSamrmpRgstrParam bisInspSamrmpRgstrParam);
  27. /**
  28. * ���������޸���Ϣ
  29. * @param BisInspSamrmpRgstrParam
  30. * @return
  31. */
  32. int updateBy(BisInspSamrmpRgstrParam bisInspSamrmpRgstrParam);
  33. List<BisInspRgstrDto> findSamrmpList(TypeParam param);
  34. List<BisInspSamrmpRgstr> getListByInspGroupIdObjType(PagePersObjParam pagePersObjParam);
  35. }