简要描述:

  • 获取系统信息

接口版本:

版本号 制定人 制定日期 修订日期
1.0.0 朱小乾 2022-04-06

请求URL:

  • /api/DictionaryItems/GetDicItemsByKey

请求方式:

  • GET

请求头:

参数名 是否必须 类型 说明
Content-Type string 请求类型: application/json

请求参数:

参数名 是否必须 类型 说明
dicKey string 字典key
key string 值key

返回示例:

正确时返回:

  1. {
  2. "code": 1,
  3. "message": "",
  4. "data": [
  5. {
  6. "id": 21,
  7. "name": "不限性别",
  8. "namePinYin": "BXXB",
  9. "keys": "不限性别",
  10. "value": "不限性别",
  11. "code": "2",
  12. "intCode": 2,
  13. "displayName": "不限性别",
  14. "description": "不限性别",
  15. "dictionaryId": 7,
  16. "dictionaryItemExtend": null
  17. }
  18. ]
  19. }

错误时返回:

返回参数说明:

参数名 类型 说明
id int 主键Id
name string 名称
namePinYin string 拼音
keys string key
value int
code string 代码
intCode int 内部code
displayName string 显示名
description string 描述
dictionaryId int 字典Id

备注:

-

文档更新时间: 2022-08-04 10:29