|
@@ -67,7 +67,7 @@ public class MuseumFlowController {
|
|
}
|
|
}
|
|
|
|
|
|
@GetMapping("/getForm")
|
|
@GetMapping("/getForm")
|
|
- @Operation(summary = "查找表单")
|
|
|
|
|
|
+ @Operation(summary = "根据id查找标本出回库中的表单")
|
|
public CommonResult<MuseumFlowRespVO> getMuseumFlow(@RequestParam("id") Integer id) {
|
|
public CommonResult<MuseumFlowRespVO> getMuseumFlow(@RequestParam("id") Integer id) {
|
|
MuseumFlowDO result = museumFlowService.selectMuseumFlow(id);
|
|
MuseumFlowDO result = museumFlowService.selectMuseumFlow(id);
|
|
MuseumFlowRespVO result1 = BeanUtils.toBean(result, MuseumFlowRespVO.class);
|
|
MuseumFlowRespVO result1 = BeanUtils.toBean(result, MuseumFlowRespVO.class);
|
|
@@ -75,7 +75,7 @@ public class MuseumFlowController {
|
|
}
|
|
}
|
|
|
|
|
|
@GetMapping("/selectPage")
|
|
@GetMapping("/selectPage")
|
|
- @Operation(summary = "获取关于标本信息的分页")
|
|
|
|
|
|
+ @Operation(summary = "获取关于标本标本库信息的分页")
|
|
public PageResult<MuseumInfoDO> selectPage(@Valid MuseumInfoPageReqVO pageVO) {
|
|
public PageResult<MuseumInfoDO> selectPage(@Valid MuseumInfoPageReqVO pageVO) {
|
|
return museumInfoService.getMuseumInfoPage(pageVO);
|
|
return museumInfoService.getMuseumInfoPage(pageVO);
|
|
}
|
|
}
|
|
@@ -87,7 +87,7 @@ public class MuseumFlowController {
|
|
}
|
|
}
|
|
|
|
|
|
@GetMapping("/getFormIntel")
|
|
@GetMapping("/getFormIntel")
|
|
- @Operation(summary = "根据id查找标本出回库中的信息,并展示在总库中的信息")
|
|
|
|
|
|
+ @Operation(summary = "根据id查找标本出回库中的信息,并展示在标本库中的信息")
|
|
public CommonResult<MuseumFlowInfoVO> getFormIntel(@RequestParam("id") Integer id) {
|
|
public CommonResult<MuseumFlowInfoVO> getFormIntel(@RequestParam("id") Integer id) {
|
|
Long UserId = getLoginUserId();
|
|
Long UserId = getLoginUserId();
|
|
if (permissionService.hasAnyRoles(UserId, "operate")) {
|
|
if (permissionService.hasAnyRoles(UserId, "operate")) {
|