package com.platform.dao; import java.util.List; import java.util.Map; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import com.platform.entities.DataInfoEntity; import com.platform.entities.PagerOptions; @Repository(value = "dataInfoDao") public interface DataInfoDao { int getLimitedDataCount(PagerOptions pagerOptions); int getLimitedBeginId(PagerOptions pagerOptions); List getLimitedDataInfoEntities(PagerOptions pagerOptions); List getLimitedDataInfoByPage(PagerOptions pagerOptions); List getIdIsExist(List list)throws Exception; List findAll()throws Exception; DataInfoEntity findById(int id)throws Exception; List findByParam(DataInfoEntity data)throws Exception; int removes(List list)throws Exception; int save(DataInfoEntity data) throws Exception; int update(DataInfoEntity data) throws Exception; int updateExtract(DataInfoEntity data) throws Exception; }