使用GET方式获取case信息列表

GET http://host/api/case

# 请求参数

uml diagram

# 请求参数样例#

{
}
1
2

# 返回参数

uml diagram
# 返回样例
{
   "message":"success", 
   "code":200, 
   "data":[
      {
         "matrix": "甲醇",
         "source": "PCS",
         "eluent": "MeOH",
         "description": "",
         "cartridge_code": "CPD1001",
         "analysis_type": "DDA",
         "analysis_parameters": {},
         "algorithm_parameters": {},
         "config": {},
         "expected_result": {}
      }
   ]
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 错误处理和说明

{
"message":"Error",
"code":400,
"data":[]
}