Commit 6244acd2 authored by tianbo's avatar tianbo

feat(data-dictionary): 修改检验检测核准项目字典查询接口

- 将 extend 参数设置为非必填参数
parent c82ed146
...@@ -119,10 +119,10 @@ public class DataDictionaryController extends BaseController { ...@@ -119,10 +119,10 @@ public class DataDictionaryController extends BaseController {
* @param extend * @param extend
* @return * @return
*/ */
@TycloudOperation(needAuth = true, ApiLevel = UserType.AGENCY) @TycloudOperation(ApiLevel = UserType.AGENCY)
@RequestMapping(value = "/getDictByExtendAndTypePage", method = RequestMethod.GET) @RequestMapping(value = "/getDictByExtendAndTypePage", method = RequestMethod.GET)
@ApiOperation(httpMethod = "GET", value = "根据extend、Type、name模糊查询字典", notes = "根据extend、Type、name模糊查询字典") @ApiOperation(httpMethod = "GET", value = "根据extend、Type、name模糊查询字典", notes = "根据extend、Type、name模糊查询字典")
public ResponseModel<IPage<DataDictionary>> getDictByExtendAndTypePage(@RequestParam("extend") String extend, public ResponseModel<IPage<DataDictionary>> getDictByExtendAndTypePage(@RequestParam(value = "extend", required = false) String extend,
@RequestParam("type") String type, @RequestParam("type") String type,
@RequestParam(value = "name", required = false) String name, @RequestParam(value = "name", required = false) String name,
@RequestParam(value = "current") int current, @RequestParam(value = "current") int current,
......
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