CreateExecute.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. package com.ichaoj.ams.request.execute;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. /**
  5. * @author : cjwen
  6. * @date : 2023/04/26 14:25
  7. */
  8. @Data
  9. @Schema(title = "创建执行")
  10. public class CreateExecute {
  11. /**
  12. * 执行次数
  13. */
  14. private Integer executeTimes;
  15. /**
  16. * 空投项目id
  17. */
  18. private String projectId;
  19. /**
  20. * 任务id
  21. */
  22. private String taskId;
  23. /**
  24. * 用户id
  25. */
  26. private String userId;
  27. /**
  28. * 地址组名称
  29. */
  30. private String groupName;
  31. /**
  32. * 源资产
  33. */
  34. private String fromAsset;
  35. /**
  36. * 目的资产
  37. */
  38. private String toAsset;
  39. /**
  40. * 时间间隔最小分钟数
  41. */
  42. private Integer intervalMin;
  43. /**
  44. * 时间间隔最大分钟数
  45. */
  46. private Integer intervalMax;
  47. /**
  48. * 交互金额
  49. */
  50. private String amount;
  51. /**
  52. * 最大gas
  53. */
  54. private String maxGas;
  55. /**
  56. * 执行状态;是否完成(0否,1是)
  57. */
  58. private Integer executeStatus;
  59. private String password;
  60. }