地区,系统,preDatainfo的Dao接口

web_backend_develope
chenlw 9 years ago
parent 79ba4feb46
commit a9410140e5

@ -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;

Loading…
Cancel
Save