You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
536 B

package com.example.demo.domain.vo;
import lombok.AllArgsConstructor;
import lombok.Data;
import java.util.Date;
@Data
@AllArgsConstructor
public class ExecutionContext {
// getters 和 setters
private String executionType; // "API" 或 "SCRIPT"
private String apiUrl;
private String requestParams;
private String token;
private String scriptFile;
private Date executionTime;
private String method;
// 构造方法
public ExecutionContext() {
this.executionTime = new Date();
}
}