索道运输
This commit is contained in:
parent
beeb6cb350
commit
3f8e7af13e
|
|
@ -154,7 +154,7 @@ public class TbTowerController {
|
||||||
if (tbTowerVoList.size()>3000){
|
if (tbTowerVoList.size()>3000){
|
||||||
return ServerResponse.createErroe("文件条数超过3000");
|
return ServerResponse.createErroe("文件条数超过3000");
|
||||||
}
|
}
|
||||||
String message = tbTowerService.importMaProp(tbTowerVoList, tbTowerVo);
|
String message = tbTowerService.tbTowerExport(tbTowerVoList, tbTowerVo);
|
||||||
return ServerResponse.createSuccess(message);
|
return ServerResponse.createSuccess(message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -54,5 +54,5 @@ public interface TbTowerService {
|
||||||
* @param tbTowerVo
|
* @param tbTowerVo
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
String importMaProp(List<TbTowerVo> tbTowerVoList, TbTowerVo tbTowerVo);
|
String tbTowerExport(List<TbTowerVo> tbTowerVoList, TbTowerVo tbTowerVo);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -167,7 +167,7 @@ public class TbTowerServiceImpl implements TbTowerService {
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public String importMaProp(List<TbTowerVo> tbTowerVoList, TbTowerVo tbTowerVo) {
|
public String tbTowerExport(List<TbTowerVo> tbTowerVoList, TbTowerVo tbTowerVo) {
|
||||||
if (tbTowerVoList.size()>0){
|
if (tbTowerVoList.size()>0){
|
||||||
int num = 1;
|
int num = 1;
|
||||||
try {
|
try {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue