using System.Collections.Generic; namespace ET; public class RobotControlComponent : Entity, IAwake, IDestroy { public long Timer = 0L; //间隔多少秒执行测试用例 public long TimerTime; /// /// 是否使用间隔 /// public int IsUseStatus; //所有需要执行的测试用例insId public List ExInstanceIdIds = new List(); // //随机中需要执行的测试用例 // public long ExInstanceId; }