|
@@ -316,6 +316,86 @@ public class RMScontroller extends BaseRESTfulController {
|
|
|
return rmsFeign.getMaterialYieldList(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize);
|
|
return rmsFeign.getMaterialYieldList(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ @ApiOperation(value = "获取物资产量列表")
|
|
|
|
|
+ @ApiImplicitParams({
|
|
|
|
|
+ @ApiImplicitParam(name = "mapValue", value = "表头和参数", required = false, dataType = "map"),
|
|
|
|
|
+ @ApiImplicitParam(name = "apiId()", value = "动态表头", required = false, dataType = "Integer"),
|
|
|
|
|
+ @ApiImplicitParam(name = "pageNum", value = "页码", required = false, dataType = "Integer"),
|
|
|
|
|
+ @ApiImplicitParam(name = "pageSize", value = "页", required = false, dataType = "Integer"),
|
|
|
|
|
+ @ApiImplicitParam(name = "status", value = "状态码", required = false, dataType = "Integer"),
|
|
|
|
|
+ })
|
|
|
|
|
+ @PostMapping("/getRmsBaseProductionCostList")
|
|
|
|
|
+ public Map<String, Object> getRmsBaseProductionCostList(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
|
|
+ Integer apiId,
|
|
|
|
|
+ Integer pageNum,
|
|
|
|
|
+ Integer pageSize
|
|
|
|
|
+ ) {
|
|
|
|
|
+ return rmsFeign.getRmsBaseProductionCostList(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @PostMapping("/insertRmsBaseProductionCost")
|
|
|
|
|
+ public Map<String, Object> insertRmsBaseProductionCost(@RequestBody(required = false) Map<String, Object> mapValue) {
|
|
|
|
|
+ return rmsFeign.insertRmsBaseProductionCost(mapValue);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @PostMapping("/updateRmsBaseProductionCost")
|
|
|
|
|
+ public Map<String, Object> updateRmsBaseProductionCost(@RequestBody(required = false) Map<String, Object> mapValue) {
|
|
|
|
|
+ return rmsFeign.updateRmsBaseProductionCost(mapValue);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @PostMapping("/deleteRmsBaseProductionCost")
|
|
|
|
|
+ public Map<String, Object> deleteRmsBaseProductionCost(@RequestBody(required = false) Map<String, Object> mapValue) {
|
|
|
|
|
+ return rmsFeign.deleteRmsBaseProductionCost(mapValue);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @PostMapping("/getRmsBasePurchaseCostList")
|
|
|
|
|
+ public Map<String, Object> getRmsBasePurchaseCostList(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
|
|
+ Integer apiId,
|
|
|
|
|
+ Integer pageNum,
|
|
|
|
|
+ Integer pageSize
|
|
|
|
|
+ ) {
|
|
|
|
|
+ return rmsFeign.getRmsBasePurchaseCostList(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @PostMapping("/insertRmsBasePurchaseCost")
|
|
|
|
|
+ public Map<String, Object> insertRmsBasePurchaseCost(@RequestBody(required = false) Map<String, Object> mapValue) {
|
|
|
|
|
+ return rmsFeign.insertRmsBasePurchaseCost(mapValue);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @PostMapping("/updateRmsBasePurchaseCost")
|
|
|
|
|
+ public Map<String, Object> updateRmsBasePurchaseCost(@RequestBody(required = false) Map<String, Object> mapValue) {
|
|
|
|
|
+ return rmsFeign.updateRmsBasePurchaseCost(mapValue);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @PostMapping("/deleteRmsBasePurchaseCost")
|
|
|
|
|
+ public Map<String, Object> deleteRmsBasePurchaseCost(@RequestBody(required = false) Map<String, Object> mapValue) {
|
|
|
|
|
+ return rmsFeign.deleteRmsBasePurchaseCost(mapValue);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @PostMapping("/getRmsBaseSaleCostList")
|
|
|
|
|
+ public Map<String, Object> getRmsBaseSaleCostList(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
|
|
+ Integer apiId,
|
|
|
|
|
+ Integer pageNum,
|
|
|
|
|
+ Integer pageSize
|
|
|
|
|
+ ) {
|
|
|
|
|
+ return rmsFeign.getRmsBaseSaleCostList(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @PostMapping("/insertRmsBaseSaleCost")
|
|
|
|
|
+ public Map<String, Object> insertRmsBaseSaleCost(@RequestBody(required = false) Map<String, Object> mapValue) {
|
|
|
|
|
+ return rmsFeign.insertRmsBaseSaleCost(mapValue);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @PostMapping("/updateRmsBaseSaleCost")
|
|
|
|
|
+ public Map<String, Object> updateRmsBaseSaleCost(@RequestBody(required = false) Map<String, Object> mapValue) {
|
|
|
|
|
+ return rmsFeign.updateRmsBaseSaleCost(mapValue);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @PostMapping("/deleteRmsBaseSaleCost")
|
|
|
|
|
+ public Map<String, Object> deleteRmsBaseSaleCost(@RequestBody(required = false) Map<String, Object> mapValue) {
|
|
|
|
|
+ return rmsFeign.deleteRmsBaseSaleCost(mapValue);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
@PostMapping("/insertMaterialYield")
|
|
@PostMapping("/insertMaterialYield")
|
|
|
public Map<String, Object> insertMaterialYield(@RequestBody(required = false) Map<String, Object> mapValue) {
|
|
public Map<String, Object> insertMaterialYield(@RequestBody(required = false) Map<String, Object> mapValue) {
|
|
|
return rmsFeign.insertMaterialYield(mapValue);
|
|
return rmsFeign.insertMaterialYield(mapValue);
|