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.

24 lines
536 B

2 months ago
  1. package com.example.demo.domain.vo;
  2. import lombok.AllArgsConstructor;
  3. import lombok.Data;
  4. import java.util.Date;
  5. @Data
  6. @AllArgsConstructor
  7. public class ExecutionContext {
  8. // getters 和 setters
  9. private String executionType; // "API" 或 "SCRIPT"
  10. private String apiUrl;
  11. private String requestParams;
  12. private String token;
  13. private String scriptFile;
  14. private Date executionTime;
  15. private String method;
  16. // 构造方法
  17. public ExecutionContext() {
  18. this.executionTime = new Date();
  19. }
  20. }