liangwenxuan 3 settimane fa
parent
commit
3b67ce1ad3

+ 1 - 0
yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/nursing/SpecialNursingPlanItemController.java

@@ -38,6 +38,7 @@ public class SpecialNursingPlanItemController {
     @PostMapping("/execute")
     @Operation(summary = "执行特殊照护计划")
     @TenantIgnore
+    @PermitAll
     public CommonResult<Boolean> execute(@Valid @RequestBody SpecialNursingPlanItemExecuteReqVO executeReqVO) {
         specialNursingPlanItemService.executePlan(executeReqVO);
         return success(true);

+ 1 - 1
yudao-module-system/yudao-module-system-biz/src/main/resources/mapper/ElderlySpecialNursingLogMapper.xml

@@ -6,7 +6,7 @@
             resultType="cn.iocoder.yudao.module.system.controller.admin.nursing.vo.ElderlySpecialNursingLogRespVO">
         SELECT
             log.id,
-            log.speical_plan_item_id AS speicalPlanItemId,
+            log.special_plan_item_id AS specialPlanItemId,
             log.elder_id AS elderId,
             ei.elder_name AS elderName,
             ei.bed_name AS bedName,