Commit 8b37211b authored by 韩桐桐's avatar 韩桐桐

fix(jg):车用气瓶的字典值接口

parent bb070893
...@@ -408,6 +408,13 @@ public class CommonController extends BaseController { ...@@ -408,6 +408,13 @@ public class CommonController extends BaseController {
return useFlagParamDto; return useFlagParamDto;
} }
@TycloudOperation(ApiLevel = UserType.AGENCY)
@GetMapping(value = "/vehicleInformationDict")
@ApiOperation(httpMethod = "GET", value = "按照类型查询车载气瓶相关的字典值", notes = "按照类型查询车载气瓶相关的字典值")
public ResponseModel<List<DictionarieValueModel>> vehicleInformationDict(@RequestParam(value = "type") String ype) {
return ResponseHelper.buildResponse(Systemctl.dictionarieClient.dictValues(ype).getResult());
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment