|
|
@@ -62,4 +62,22 @@ public interface SheetServerFeign {
|
|
|
@ApiOperation( value = "新建在制品改制报工", notes = "新建在制品改制报工" )
|
|
|
@PostMapping({Constant.SHEET_REPORT + "/insert_wh_remake"})
|
|
|
ResponseResultVO<?> insertWhRemake(@RequestBody Map<String, Object> sheetReportVO);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @desc : 新建模具工单报工
|
|
|
+ * @author : 洪旭东
|
|
|
+ * @date : 2024-01-23 15:17
|
|
|
+ */
|
|
|
+ @ApiOperation( value = "泥釉浆工单报工完成", notes = "泥釉浆工单报工完成" )
|
|
|
+ @PostMapping({Constant.SHEET_REPORT + "/insert_mould"})
|
|
|
+ ResponseResultVO<?> insertMould(@RequestBody Map<String, Object> sheetReportVO);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @desc : 模型改制报工
|
|
|
+ * @author : 洪旭东
|
|
|
+ * @date : 2024-01-27 09:26
|
|
|
+ */
|
|
|
+ @ApiOperation( value = "模型改制报工", notes = "模型改制报工" )
|
|
|
+ @PostMapping(Constant.SHEET_REPORT + "/insert_mould_reform")
|
|
|
+ ResponseResultVO<?> insertMouldReform(@RequestBody Map<String, Object> sheetReportVO);
|
|
|
}
|