package cn.com.goldenwater.dcproj.dao; import cn.com.goldenwater.dcproj.model.ImpRsInfo; import cn.com.goldenwater.dcproj.param.ImpRsInfoParam; import cn.com.goldenwater.core.persistence.CrudDao; import org.springframework.stereotype.Repository; import java.util.List; import java.util.Map; @Repository public interface ImpRsInfoDao extends CrudDao { List> getRegGroupList(Map map); int selectCount(ImpRsInfoParam impRsInfoParam); }