Commit 8d603df9a7a802869643859e7da64fbec2ddc0c7
1 parent
ecb84079
提交代码
Showing
1 changed file
with
2 additions
and
2 deletions
src/main/java/com/zteits/irain/portal/web/parkinglotcloudplatform/devicemanagement/PdaController.java
... | ... | @@ -155,7 +155,7 @@ public class PdaController extends BizController { |
155 | 155 | } |
156 | 156 | |
157 | 157 | @ApiOperation("pda信息导出excel") |
158 | - @GetMapping("exportpdaExcel") | |
158 | + @GetMapping("exportBerthInfoExcel") | |
159 | 159 | public void exportBerthInfoExcel(@RequestBody TpPPdaRequest tpPPdaRequest, HttpServletRequest requests, HttpServletResponse response) { |
160 | 160 | tpPPdaRequest.setSysCode(sysCode); |
161 | 161 | BizResult<List<TpPPdaDTO>> list = tpPPdaService.queryPdaInfo(tpPPdaRequest); |
... | ... | @@ -192,7 +192,7 @@ public class PdaController extends BizController { |
192 | 192 | |
193 | 193 | |
194 | 194 | @ApiOperation("pda信息 导入模板下载") |
195 | - @GetMapping("exportpdaExcel") | |
195 | + @GetMapping("exportModelExcel") | |
196 | 196 | public void exportModelExcel(HttpServletRequest requests, HttpServletResponse response) { |
197 | 197 | String[] title = new String[] { "设备编号", "设备名称", "设备类型","停车场编号","sim卡号","持有人编号","持有人名称","状态","资源描述" }; |
198 | 198 | String fileName = "PDA信息导入模板"; | ... | ... |