package com.goafanti.common.dao; import java.util.List; import java.util.Map; import com.goafanti.common.model.CopyrightInfo; import com.goafanti.copyright.bo.CopyrightInfoDetail; import com.goafanti.copyright.bo.CopyrightInfoSummary; public interface CopyrightInfoMapper { int deleteByPrimaryKey(String id); int insert(CopyrightInfo record); int insertSelective(CopyrightInfo record); CopyrightInfo selectByPrimaryKey(String id); CopyrightInfoDetail findByPrimaryKey(String id); int updateByPrimaryKeySelective(CopyrightInfo record); int updateByPrimaryKey(CopyrightInfo record); List findListByPage(Map params); int findListCount(Map params); int deleteByPrimaryKeys(List id); List selectByPrimaryKeys(List asList); }