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.
41 lines
1.1 KiB
41 lines
1.1 KiB
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.DataInfoEntityMoveTmp;
|
|
import com.platform.entities.PagerOptions;
|
|
import com.platform.entities.PreDataInfo;
|
|
|
|
@Repository(value = "preDataInfoDao")
|
|
public interface PreDataInfoDao {
|
|
|
|
int getLimitedDataCount(PagerOptions pagerOptions);
|
|
|
|
int getLimitedBeginId(PagerOptions pagerOptions);
|
|
|
|
List<PreDataInfo> getLimitedDataInfoEntities(PagerOptions pagerOptions);
|
|
|
|
List<String> getIdIsExist(List<Integer> list)throws Exception;
|
|
|
|
List<PreDataInfo> findAll()throws Exception;
|
|
|
|
List<PreDataInfo> findAllCollect()throws Exception;
|
|
|
|
void insertBatch(List<PreDataInfo> list) throws Exception;
|
|
|
|
int update(PreDataInfo data) throws Exception;
|
|
|
|
/** 查找 存在的 系统(根据 地区编码 和 系统编码)
|
|
* @param list
|
|
* @return
|
|
* @throws Exception
|
|
*/
|
|
List<String> getAreaSysNameExistByAreaSysName(List<String> list)throws Exception;
|
|
|
|
}
|