|
@@ -6,6 +6,7 @@ import com.alibaba.fastjson.JSON;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.rongwei.bscommon.sys.service.ZhcxInsideInspectionService;
|
|
|
import com.rongwei.bsentity.dto.InsideInspectionOperRequest;
|
|
|
+import com.rongwei.bsentity.dto.SeqReportRequest;
|
|
|
import com.rongwei.bsentity.dto.inside.*;
|
|
|
import com.rongwei.bsentity.vo.ZhcxInsideInspectionVo;
|
|
|
import com.rongwei.rwcommon.base.R;
|
|
@@ -261,15 +262,10 @@ public class ZhcxInsideInspectionController {
|
|
|
|
|
|
/**
|
|
|
* 生产订单末工序报工检验
|
|
|
- * @param projectCode 项目工号
|
|
|
- * @param inspectionPoint 报验内容(大构建号+小构建号+完工检验)
|
|
|
*/
|
|
|
@PostMapping("/getSeqReportResult")
|
|
|
- public R getSeqReportResult(
|
|
|
- @RequestParam("projectcode") String projectCode,
|
|
|
- @RequestParam("inspectionpoint") String inspectionPoint
|
|
|
- ) {
|
|
|
- return service.getSeqReportResult(projectCode, inspectionPoint);
|
|
|
+ public R getSeqReportResult(@RequestBody SeqReportRequest request) {
|
|
|
+ return service.getSeqReportResult(request.getProjectcode(), request.getInspectionpoint());
|
|
|
}
|
|
|
|
|
|
|