| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package cn.com.goldenwater.dcproj.dao;
- import cn.com.goldenwater.core.persistence.CrudDao;
- import cn.com.goldenwater.dcproj.dto.BisInspRgstrDto;
- import cn.com.goldenwater.dcproj.model.BisInspSamrmpRgstr;
- import cn.com.goldenwater.dcproj.param.BisInspSamrmpRgstrParam;
- import cn.com.goldenwater.dcproj.param.PagePersObjParam;
- import cn.com.goldenwater.dcproj.param.TypeParam;
- import org.springframework.stereotype.Repository;
- import java.util.List;
- /**
- * @author lune
- * @date 2020-9-11
- */
- @Repository
- public interface BisInspSamrmpRgstrDao extends CrudDao<BisInspSamrmpRgstr, BisInspSamrmpRgstrParam> {
- /**
- * ��ȡ��������
- * @return
- */
- List<BisInspSamrmpRgstr> findAll();
- /**
- * ����ɸѡ������ȡ����
- * @param BisInspSamrmpRgstrParam
- * @return
- */
- int selectCount(BisInspSamrmpRgstrParam bisInspSamrmpRgstrParam);
- /**
- * ������������Ϣ
- * @param BisInspSamrmpRgstrParam
- * @return
- */
- int updateBy(BisInspSamrmpRgstrParam bisInspSamrmpRgstrParam);
- List<BisInspRgstrDto> findSamrmpList(TypeParam param);
- List<BisInspSamrmpRgstr> getListByInspGroupIdObjType(PagePersObjParam pagePersObjParam);
- }
|