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