新增-erp物料查询接口api,get改post
This commit is contained in:
@@ -31,11 +31,11 @@ public interface ErpExternalApi {
|
|||||||
@Operation(summary = "erp数据查询")
|
@Operation(summary = "erp数据查询")
|
||||||
HashMap<String, Object> queryDataToErp(@Valid @RequestBody ErpQueryReqDTO reqDTO);
|
HashMap<String, Object> queryDataToErp(@Valid @RequestBody ErpQueryReqDTO reqDTO);
|
||||||
|
|
||||||
@GetMapping(PREFIX + "/queryProductiveVersion")
|
@PostMapping(PREFIX + "/queryProductiveVersion")
|
||||||
@Operation(summary = "生产版本数据查询")
|
@Operation(summary = "生产版本数据查询")
|
||||||
CommonResult<String> getErpProductiveVersionByFM(@Valid @RequestBody ErpProductiveVersionReqDTO reqDTO);
|
CommonResult<String> getErpProductiveVersionByFM(@Valid @RequestBody ErpProductiveVersionReqDTO reqDTO);
|
||||||
|
|
||||||
@GetMapping(PREFIX + "/queryMaterial")
|
@PostMapping(PREFIX + "/queryMaterial")
|
||||||
@Operation(summary = "物料数据查询")
|
@Operation(summary = "物料数据查询")
|
||||||
CommonResult<ErpMaterialDTO> getErpMaterial(@Valid @RequestBody ErpMaterialDTO reqDTO);
|
CommonResult<ErpMaterialDTO> getErpMaterial(@Valid @RequestBody ErpMaterialDTO reqDTO);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user