[6.2.0]录包工具改版

This commit is contained in:
xuxinchao
2023-11-16 16:15:56 +08:00
parent d8c0cf095a
commit 7256c2804b
16 changed files with 370 additions and 214 deletions

View File

@@ -0,0 +1,10 @@
package com.mogo.eagle.core.data.deva.badcase
/**
* 录包原因数据实体
*/
class RecordOptionEntity {
var optionName: String = "" //一级列表原因
var optionCode: String = "" //原因Code
var children: ArrayList<RecordOptionEntity> = ArrayList() //二级列表
}