|
|
@ -50,6 +50,17 @@ public class DcRoadSectionController extends BaseController |
|
|
|
List<DcRoadSection> list = dcRoadSectionService.selectDcRoadSectionList(dcRoadSection); |
|
|
|
return getDataTable(list); |
|
|
|
} |
|
|
|
/** |
|
|
|
* 查询辖区路段列表(不分页) |
|
|
|
*/ |
|
|
|
@ApiOperation("查询辖区路段列表") |
|
|
|
@PreAuthorize("@ss.hasPermi('business:roadSection:list')") |
|
|
|
@GetMapping("/listAll") |
|
|
|
public AjaxResult listAll(DcRoadSection dcRoadSection) |
|
|
|
{ |
|
|
|
return AjaxResult.success(dcRoadSectionService.selectDcRoadSectionListAll(dcRoadSection)); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 导出辖区路段列表 |
|
|
|