RobotControlComponent.cs 491 B

12345678910111213141516171819202122
  1. using System.Collections.Generic;
  2. namespace ET;
  3. public class RobotControlComponent : Entity, IAwake, IDestroy
  4. {
  5. public long Timer = 0L;
  6. //间隔多少秒执行测试用例
  7. public long TimerTime;
  8. /// <summary>
  9. /// 是否使用间隔
  10. /// </summary>
  11. public int IsUseStatus;
  12. //所有需要执行的测试用例insId
  13. public List<long> ExInstanceIdIds = new List<long>();
  14. // //随机中需要执行的测试用例
  15. // public long ExInstanceId;
  16. }