preData,地区,系统的dao层接口

web_backend_develope
chenlw 9 years ago
parent 89fde34f71
commit 53b0c1137c

@ -25,4 +25,18 @@ public interface IRegionalismCodeDao {
List<RegionalismEntity> findSubRegionalism(RegionalismEntity region) throws Exception;
/** areaCode
* @param list
* @return
* @throws Exception
*/
List<RegionalismEntity> findExistRegionalism(List<String> list) throws Exception;
/**
* @param list
* @return
* @throws Exception
*/
int insertBatch(List<RegionalismEntity> list) throws Exception;
}

@ -8,6 +8,7 @@ import org.springframework.stereotype.Repository;
import com.platform.entities.DataInfoEntity;
import com.platform.entities.DataInfoEntityMoveTmp;
import com.platform.entities.PagerOptions;
import com.platform.entities.PreDataInfoFull;
import com.platform.entities.RegionalismEntity;
import com.platform.entities.SystemEntity;
@ -24,5 +25,13 @@ public interface ISystemCodeDao {
*/
List<SystemEntity> findAllSystem() throws Exception;
List<SystemEntity> findSubSystem(SystemEntity system) throws Exception;
List<SystemEntity> findSubSystemByName(SystemEntity system) throws Exception;
List<SystemEntity> findSubSystemByCode(SystemEntity system) throws Exception;
List<SystemEntity> findByName(List<String> list) throws Exception;
List<SystemEntity> findByCode(List<String> list) throws Exception;
int insertBatch(List<String> list) throws Exception;
}

@ -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;
}
Loading…
Cancel
Save