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.
21 lines
512 B
21 lines
512 B
package com.platform.dao;
|
|
|
|
import java.util.List;
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import com.platform.entities.DataInfoEntity;
|
|
import com.platform.entities.PagerOptions;
|
|
|
|
public interface DataInfoDao {
|
|
|
|
int getLimitedDataCount(@Param("PagerOptions")PagerOptions pagerOptions);
|
|
|
|
int getLimitedBeginId(@Param("PagerOptions")PagerOptions pagerOptions);
|
|
|
|
List<DataInfoEntity> getLimitedDataInfoEntities(@Param("PagerOptions")PagerOptions pagerOptions);
|
|
|
|
List<String> getIdIsExist(int parseInt);
|
|
|
|
}
|