You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
678 B
28 lines
678 B
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<DataInfoEntity> getLimitedDataInfoEntities(PagerOptions pagerOptions);
|
|
|
|
List<String> getIdIsExist(List<Integer> list)throws Exception;
|
|
|
|
int removes(List<Integer> list)throws Exception;
|
|
|
|
int save(DataInfoEntity data) throws Exception;
|
|
|
|
}
|