All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arextest.schedule.model.plan.BuildReplayPlanRequest Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
package com.arextest.schedule.model.plan;

import com.arextest.schedule.model.CaseSourceEnvType;
import com.fasterxml.jackson.annotation.JsonFormat;
import java.util.Date;
import java.util.List;
import java.util.Map;
import lombok.Data;

/**
 * Created by wang_yc on 2021/9/15
 */
@Data
public class BuildReplayPlanRequest {

  private String appId;

  private String planName;
  /**
   * @see BuildReplayPlanType
   */
  private int replayPlanType;
  private String operator;

  private String sourceEnv;

  private String targetEnv;

  /**
   * @see CaseSourceEnvType
   */
  private Integer caseSourceType;

  private Integer caseCountLimit;

  /**
   * yyyy-MM-dd HH:mm:ss
   */
  @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  private Date caseSourceFrom;
  /**
   * yyyy-MM-dd HH:mm:ss
   */
  @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  private Date caseSourceTo;

  private List operationCaseInfoList;   //replay_plan_type=1or2的时候 来这里获取 需要回放的接口或case
  /**
   * select the cases based on the tag of the recorded case
   */
  private Map caseTags;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy