|
|
@@ -133,12 +133,10 @@ public class TResourceOperationController extends BaseController |
|
|
|
/** |
|
|
|
* 获取地块经营详细信息,翻译字典 |
|
|
|
*/ |
|
|
|
@GetMapping(value = "/detail/{id}") |
|
|
|
public AjaxResult detail(@PathVariable("id") Long id) |
|
|
|
@GetMapping(value = "/detail/{dkbm}") |
|
|
|
public AjaxResult detail(@PathVariable("dkbm") String dkbm) |
|
|
|
{ |
|
|
|
TResourceOperation detail = tResourceOperationService.selectTResourceOperationById(id); |
|
|
|
TranslateUtils.translate(detail, false); |
|
|
|
return success(detail); |
|
|
|
return success(tResourceOperationService.selectTResourceOperationByDkbm(dkbm)); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|