zhoushihao
2 天以前 4e3b8155722b66e25df3c6fd42cc586b68dea391
hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/hollow/controller/HollowBigStorageCageDetailsController.java
@@ -8,10 +8,7 @@
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.*;
import java.util.List;
@@ -50,5 +47,12 @@
        return Result.build(200, "破损/拿走成功", null);
    }
    @ApiOperation("中空理片笼格子禁用/启用")
    @GetMapping("/updateHollowStorageCageDisabled")
    public Result updateHollowStorageCageDisabled(int slot, int enableState) {
        hollowBigStorageCageDetailsService.updateHollowStorageCageDisabled(slot, enableState);
        return Result.build(200, "启用/禁用成功", 1);
    }
}