| | |
| | | |
| | | |
| | | @ApiModelProperty(value = "等级") |
| | | private Integer level; |
| | | private String level; |
| | | |
| | | /** |
| | | * 父id |
| | |
| | | |
| | | @GetMapping("/{id}") |
| | | @ApiOperation(value = "详情", notes = "详情") |
| | | public DistrictDO get(@PathVariable String id) { |
| | | return districtService.getById(id); |
| | | public ResponseEntity<DistrictDO> get(@PathVariable String id) { |
| | | |
| | | return returnData(R.SUCCESS.getCode(),districtService.getById(id)); |
| | | } |
| | | |
| | | @GetMapping("/page") |
| | |
| | | |
| | | @GetMapping("/{id}") |
| | | @ApiOperation(value = "详情", notes = "详情") |
| | | public DistrictTengxunDO get(@PathVariable String id) { |
| | | return districtTengxunService.getById(id); |
| | | public ResponseEntity<DistrictTengxunDO> get(@PathVariable String id) { |
| | | return returnData(R.SUCCESS.getCode(), districtTengxunService.getById(id)); |
| | | } |
| | | |
| | | @GetMapping("/page") |