|
|
@@ -144,12 +144,10 @@ public class TResourceLandController extends BaseController |
|
|
|
/** |
|
|
|
* 获取地块属性详细信息,翻译字典 |
|
|
|
*/ |
|
|
|
@GetMapping(value = "/detail/{fid}") |
|
|
|
public AjaxResult detail(@PathVariable("fid") Long fid) |
|
|
|
@GetMapping(value = "/detail/{dkbm}") |
|
|
|
public AjaxResult detail(@PathVariable("dkbm") String dkbm) |
|
|
|
{ |
|
|
|
TResourceLand detail = tResourceLandService.selectTResourceLandByFid(fid); |
|
|
|
TranslateUtils.translate(detail, false); |
|
|
|
return success(detail); |
|
|
|
return success(tResourceLandService.selectTResourceLandByDkbm(dkbm)); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|