|
|
|
@ -0,0 +1,39 @@
|
|
|
|
|
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;
|
|
|
|
|
import com.platform.entities.PreDataInfoFull;
|
|
|
|
|
|
|
|
|
|
@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;
|
|
|
|
|
|
|
|
|
|
int insertBatch(List<PreDataInfoFull> list) throws Exception;
|
|
|
|
|
|
|
|
|
|
int update(PreDataInfoFull data) throws Exception;
|
|
|
|
|
|
|
|
|
|
/** 查找 存在的 系统(根据 地区编码 和 系统编码)
|
|
|
|
|
* @param list
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
List<String> getAreaSysNameExistByAreaSysName(List<String> list)throws Exception;
|
|
|
|
|
|
|
|
|
|
}
|