ZengTao
4 天以前 21a76af55c4da5f1999e9dd24690b2449a7a18a7
hangzhoumesParent/moduleService/CacheGlassModule/src/main/java/com/mes/edgstoragecage/controller/EdgStorageCageController.java
@@ -1,6 +1,6 @@
package com.mes.edgstoragecage.controller;
import com.mes.edgglasstask.entity.request.IdentWornRequest;
import com.mes.damage.entity.request.DamageRequest;
import com.mes.edgstoragecage.entity.EdgStorageCage;
import com.mes.edgstoragecage.entity.EdgStorageCageDetails;
import com.mes.edgstoragecage.service.EdgStorageCageDetailsService;
@@ -10,10 +10,10 @@
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
import java.util.List;
import java.util.Map;
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;
/**
 * <p>
@@ -49,9 +49,9 @@
        return Result.build(200, "【清除/更换/绑定】" + isSucess, 1);
    }
    @ApiOperation("磨边模块汇报玻璃状态   功能:对笼内栅格玻璃进行【破损/拿走】  ")
    @ApiOperation("磨边模块汇报玻璃状态   功能:对磨边队列玻璃进行【破损/拿走】  ")
    @PostMapping("/edgReportStatus")
    public Result edgReportStatus(@RequestBody @Validated IdentWornRequest request) {
    public Result edgReportStatus(@RequestBody @Validated DamageRequest request) {
        return Result.build(200, "【破损/拿走】" + edgStorageCageDetailsService.edgReportStatus(request), 1);
    }