## 行業列表
~~~[api]
get:/system/getIndustryList
<<<
success
{
"code": "00000",
"data": {
"industryList": [ // 一級行業列表
{
"industryId": 1, // 行業編號
"parentId": "0", // 上級編號
"industryName": "農、林、牧、漁業", // 一級行業名稱
"secondIndustryList": [ // 二級行業列表
{
"industryId": 19,
"parentId": "1", // 上級編號
"industryName": "農業" // 二級行業名稱
},
...
]
},
...
]
},
"onceToken": "",
"info": "正常處理"
}
<<<
error
{
"code": "10001",
"data": null,
"onceToken": "",
"info": "獲取行業列表失敗"
}
~~~