@ -37,6 +37,6 @@ public interface IRegionalismCodeDao {
* @return
* @throws Exception
*/
int insertBatch(List<RegionalismEntity> list) throws Exception;
void insertBatch(List<RegionalismEntity> list) throws Exception;
}
@ -33,5 +33,5 @@ public interface ISystemCodeDao {
List<SystemEntity> findByCode(List<String> list) throws Exception;
int insertBatch(List<String> list) throws Exception;
void insertBatch(List<String> list) throws Exception;
@ -25,7 +25,7 @@ public interface PreDataInfoDao {
List<PreDataInfo> findAll()throws Exception;
int insertBatch(List<PreDataInfoFull> list) throws Exception;
void insertBatch(List<PreDataInfoFull> list) throws Exception;
int update(PreDataInfoFull data) throws Exception;