package com.izouma.awesomeadmin.dao; import java.util.*; import com.izouma.awesomeadmin.datasource.DataSource; import org.springframework.stereotype.Repository; import com.izouma.awesomeadmin.model.ArContentChild; /** * Dao接口 */ @Repository("com.zoumaframe.dao.ArContentChildMapper") public interface ArContentChildMapper{ int deleteByPrimaryKey(Integer id); int insertSelective(ArContentChild record); ArContentChild selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(ArContentChild record); List queryAllArContentChild(ArContentChild record); List queryArContentChildByPage(Map parameter); int delete(ArContentChild record); ArContentChild queryArContentChild(ArContentChild record); List query(ArContentChild record); }