|
@@ -8,6 +8,7 @@ import com.onemap.common.core.web.domain.AjaxResult;
|
|
|
import com.onemap.common.core.web.page.TableDataInfo;
|
|
|
import com.onemap.common.log.annotation.Log;
|
|
|
import com.onemap.common.log.enums.BusinessType;
|
|
|
+import com.onemap.common.security.annotation.RequiresPermissions;
|
|
|
import com.onemap.common.security.utils.SecurityUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
@@ -67,5 +68,13 @@ public class MyApplicationController extends BaseController {
|
|
|
return toAjax(tZymlApplicationRecordService.updateTZymlApplicationRecord(newRecord));
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 详细信息
|
|
|
+ */
|
|
|
+ @GetMapping(value = "/{id}")
|
|
|
+ public AjaxResult getInfo(@PathVariable("id") String id) {
|
|
|
+ return success(tZymlApplicationRecordService.selectTZymlApplicationRecordById(id));
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
}
|