Commit 375fb63c authored by wangxl's avatar wangxl

Merge remote-tracking branch 'origin/master'

parents a66cabd8 80a68221
......@@ -71,6 +71,14 @@ public class SystemParameterController extends BaseController<SystemParameterSer
return ResponseDataModel.ok(systemParameterService.getParameterList(s));
}
@ApiOperation(value = "根据参数获取参数列表", httpMethod = "GET", notes = "根据参数获取参数列表")
@GetMapping
@Anonymous
@RequestMapping("/getParameterListByTypeId")
public ResponseDataModel<List<SystemParameter>> getParameterListByTypeId(Integer typeId) {
return ResponseDataModel.ok(systemParameterService.getListByType(typeId));
}
@ApiOperation(value = "根据类型参数列表", httpMethod = "GET", notes = "根据类型参数列表")
@GetMapping
@Anonymous
......
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