|  |  |  | 
|---|
|  |  |  | @PreAuthorize("@ss.hasPermi('alarmpoints:tubesDetails:list')") | 
|---|
|  |  |  | @GetMapping("/list") | 
|---|
|  |  |  | @ApiOperation("查询管线详情列表") | 
|---|
|  |  |  | public TableDataInfo list(ArdTubesDetails ardTubesDetails) | 
|---|
|  |  |  | public AjaxResult list(ArdTubesDetails ardTubesDetails) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | startPage(); | 
|---|
|  |  |  | //startPage(); | 
|---|
|  |  |  | List<ArdTubesDetails> list = ardTubesDetailsService.selectArdTubesDetailsList(ardTubesDetails); | 
|---|
|  |  |  | return getDataTable(list); | 
|---|
|  |  |  | return AjaxResult.success(list); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | 
|---|
|  |  |  | String message = ardTubesDetailsService.importArdTubesDetails(tubesDetailsList, updateSupport, operName,tubeId); | 
|---|
|  |  |  | return success(message); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @PostMapping("/importTemplate") | 
|---|
|  |  |  | @ApiOperation(value = "管线详情模板下载接口") | 
|---|
|  |  |  | public void importTemplate(HttpServletResponse response) | 
|---|