JobTask.java 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. package com.idiot.operationbackend.entity;
  2. import com.baomidou.mybatisplus.annotation.TableId;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. /**
  5. * 定时任务
  6. * @author wang xiao
  7. * @date Created in 14:43 2020/9/23
  8. */
  9. @TableName("t_job_task")
  10. public class JobTask {
  11. @TableId
  12. private String id;
  13. private String accountId;
  14. private String nikeName;
  15. private String headImage;
  16. private String taskLabel;
  17. private Long taskTimer;
  18. private Integer status;
  19. private Integer type;
  20. private String taskKey;
  21. private String createTime;
  22. private String updateTime;
  23. public String getId() {
  24. return id;
  25. }
  26. public void setId(String id) {
  27. this.id = id;
  28. }
  29. public String getAccountId() {
  30. return accountId;
  31. }
  32. public void setAccountId(String accountId) {
  33. this.accountId = accountId;
  34. }
  35. public String getNikeName() {
  36. return nikeName;
  37. }
  38. public void setNikeName(String nikeName) {
  39. this.nikeName = nikeName;
  40. }
  41. public String getHeadImage() {
  42. return headImage;
  43. }
  44. public void setHeadImage(String headImage) {
  45. this.headImage = headImage;
  46. }
  47. public String getTaskLabel() {
  48. return taskLabel;
  49. }
  50. public void setTaskLabel(String taskLabel) {
  51. this.taskLabel = taskLabel;
  52. }
  53. public Long getTaskTimer() {
  54. return taskTimer;
  55. }
  56. public void setTaskTimer(Long taskTimer) {
  57. this.taskTimer = taskTimer;
  58. }
  59. public Integer getStatus() {
  60. return status;
  61. }
  62. public void setStatus(Integer status) {
  63. this.status = status;
  64. }
  65. public Integer getType() {
  66. return type;
  67. }
  68. public void setType(Integer type) {
  69. this.type = type;
  70. }
  71. public String getTaskKey() {
  72. return taskKey;
  73. }
  74. public void setTaskKey(String taskKey) {
  75. this.taskKey = taskKey;
  76. }
  77. public String getCreateTime() {
  78. return createTime;
  79. }
  80. public void setCreateTime(String createTime) {
  81. this.createTime = createTime;
  82. }
  83. public String getUpdateTime() {
  84. return updateTime;
  85. }
  86. public void setUpdateTime(String updateTime) {
  87. this.updateTime = updateTime;
  88. }
  89. @Override
  90. public String toString() {
  91. return "JobTask{" +
  92. "id='" + id + '\'' +
  93. ", accountId='" + accountId + '\'' +
  94. ", nikeName='" + nikeName + '\'' +
  95. ", headImage='" + headImage + '\'' +
  96. ", taskLabel='" + taskLabel + '\'' +
  97. ", taskTimer=" + taskTimer +
  98. ", status=" + status +
  99. ", type=" + type +
  100. ", taskKey='" + taskKey + '\'' +
  101. ", createTime='" + createTime + '\'' +
  102. ", updateTime='" + updateTime + '\'' +
  103. '}';
  104. }
  105. }