package com.izouma.awesomeadmin.dao; import java.util.*; import com.izouma.awesomeadmin.datasource.DataSource; import org.springframework.stereotype.Repository; import com.izouma.awesomeadmin.model.PopNotice; /** * Dao接口 */ @Repository("com.zoumaframe.dao.PopNoticeMapper") public interface PopNoticeMapper{ /*generatedStart*/ int deleteByPrimaryKey(Integer id); int insertSelective(PopNotice record); PopNotice selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(PopNotice record); List queryAllPopNotice(PopNotice record); List queryPopNoticeByPage(Map parameter); int delete(PopNotice record); PopNotice queryPopNotice(PopNotice record); List query(PopNotice record); /*generatedEnd*/ }