package cn.com.goldenwater.dcproj.dao; import cn.com.goldenwater.dcproj.model.GwNtcAnnsmnt; import cn.com.goldenwater.dcproj.param.GwNtcAnnsmntParam; import cn.com.goldenwater.core.persistence.CrudDao; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface GwNtcAnnsmntDao extends CrudDao { List findPagePcInfo(GwNtcAnnsmntParam param); }