package cn.com.goldenwater.dcproj.dao; import cn.com.goldenwater.dcproj.dto.BisInspRgstrDto; import cn.com.goldenwater.dcproj.dto.BisInspRsmlRgstrDto; import cn.com.goldenwater.dcproj.model.BisInspRsmlRgstr; import cn.com.goldenwater.dcproj.param.BisInspRsmlRgstrParam; import cn.com.goldenwater.core.persistence.CrudDao; import cn.com.goldenwater.dcproj.param.PagePersObjParam; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; import cn.com.goldenwater.dcproj.param.TypeParam; @Repository public interface BisInspRsmlRgstrDao extends CrudDao { List getListRsmlByInspGroupIdObjType(PagePersObjParam pagePersObjParam); List getRsmlList(BisInspRsmlRgstrParam bisInspRsmlRgstrParam); List findRsmlList(TypeParam typeParam); List getRsmlByIdNm(@Param("groupId") String groupId, @Param("nm") String nm); }