Commit 3224fefd authored by wdy's avatar wdy

用例编号添加

parent a8908e4a
......@@ -171,6 +171,17 @@ public class StrategyModelTestTaskNew implements StrategyModelTestTask, Initiali
List<ModelTestViewVO> list = jsonObject.getList("regulation_item_result_list",ModelTestViewVO.class);
if (list != null && !list.isEmpty()) {
// 遍历 ModelTestViewVO 列表
for (ModelTestViewVO viewVO : list) {
// 遍历 case_result_list
for (ModelTestResultVO resultVO : viewVO.getCase_result_list()) {
// 将 sequence 的值赋给 serial_number
resultVO.setSerial_number(resultVO.getSequence());
}
}
}
response.setStandardNum((Integer) jsonObject.get("regulation_item_count"));
response.setModelTestTaskViewResponseList(list);
......
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