|
@@ -1066,4 +1066,17 @@ public class RMScontroller {
|
|
|
return rmsFeign.isInHere(personnelJobNumber);
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ @ApiOperation(value="创建", notes="添加油品名称")
|
|
|
+ @ApiImplicitParam(name = "oilTypeName", value = "油品名称", required = true, dataType = "String")
|
|
|
+ @PostMapping(value = "/addOilType")
|
|
|
+ public Map<String, Object> addOilType(String oilTypeName){
|
|
|
+ return rmsFeign.addOilType(oilTypeName);
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value="创建", notes="查询油品名称")
|
|
|
+ @PostMapping(value = "/oilNameSelect")
|
|
|
+ public Map<String, Object> oilNameSelect(){
|
|
|
+ return rmsFeign.oilNameSelect();
|
|
|
+ }
|
|
|
}
|