QuartzJobConfig1.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. //package com.yihu.wlyy.entity.job;
  2. //
  3. //import javax.persistence.Column;
  4. //import javax.persistence.Entity;
  5. //import javax.persistence.GeneratedValue;
  6. //import javax.persistence.Id;
  7. //import javax.persistence.Table;
  8. //import org.hibernate.annotations.GenericGenerator;
  9. //
  10. ///**
  11. // * 计划任务
  12. // */
  13. //@Entity
  14. //@Table(name = "wlyy_job_config")
  15. //public class QuartzJobConfig implements java.io.Serializable {
  16. //
  17. // private String id;
  18. // private String quotaId;//指标id
  19. // private String jobName;//任务名称
  20. // private String jobInfo;//任务描述
  21. // private String jobType;//任务类型(0--单次执行 1--周期执行 2--监听任务)
  22. // private String jobClass;//任务执行的class
  23. // private String quartzCron;//quartz表达式
  24. // private String status;//1 启动 0停止
  25. // private String del;//是否删除 1正常 0删除
  26. //
  27. // /** minimal constructor */
  28. // public QuartzJobConfig() {
  29. //
  30. // }
  31. //
  32. // /** full constructor */
  33. // public QuartzJobConfig(String jobName, String jobInfo, String jobType,
  34. // String jobClass, String quartzCron, String status) {
  35. // this.jobName = jobName;
  36. // this.jobInfo = jobInfo;
  37. // this.jobType = jobType;
  38. // this.jobClass = jobClass;
  39. // this.quartzCron = quartzCron;
  40. // this.status = status;
  41. // }
  42. //
  43. // // Property accessors
  44. // @GenericGenerator(name = "generator", strategy = "uuid")
  45. // @Id
  46. // @GeneratedValue(generator = "generator")
  47. // @Column(name = "id", unique = true, nullable = false, length = 50)
  48. // public String getId() {
  49. // return this.id;
  50. // }
  51. //
  52. // public void setId(String id) {
  53. // this.id = id;
  54. // }
  55. //
  56. // @Column(name = "job_name", length = 50)
  57. // public String getJobName() {
  58. // return this.jobName;
  59. // }
  60. //
  61. // public void setJobName(String jobName) {
  62. // this.jobName = jobName;
  63. // }
  64. //
  65. // @Column(name = "job_info", length = 200)
  66. // public String getJobInfo() {
  67. // return this.jobInfo;
  68. // }
  69. //
  70. // public void setJobInfo(String jobInfo) {
  71. // this.jobInfo = jobInfo;
  72. // }
  73. //
  74. // @Column(name = "job_type", length = 10)
  75. // public String getJobType() {
  76. // return this.jobType;
  77. // }
  78. //
  79. // public void setJobType(String jobType) {
  80. // this.jobType = jobType;
  81. // }
  82. //
  83. // @Column(name = "job_class", length = 200)
  84. // public String getJobClass() {
  85. // return jobClass;
  86. // }
  87. //
  88. // public void setJobClass(String jobClass) {
  89. // this.jobClass = jobClass;
  90. // }
  91. //
  92. // @Column(name = "quartz_cron", length = 200)
  93. // public String getQuartzCron() {
  94. // return this.quartzCron;
  95. // }
  96. //
  97. // public void setQuartzCron(String quartzCron) {
  98. // this.quartzCron = quartzCron;
  99. // }
  100. //
  101. // @Column(name = "status", length = 1)
  102. // public String getStatus() {
  103. // return this.status;
  104. // }
  105. //
  106. // public void setStatus(String status) {
  107. // this.status = status;
  108. // }
  109. //
  110. // @Column(name = "quota_id", length = 50)
  111. // public String getQuotaId() {
  112. // return quotaId;
  113. // }
  114. //
  115. // public void setQuotaId(String quotaId) {
  116. // this.quotaId = quotaId;
  117. // }
  118. //
  119. // @Column(name = "del", length = 1)
  120. // public String getDel() {
  121. // return del;
  122. // }
  123. //
  124. // public void setDel(String del) {
  125. // this.del = del;
  126. // }
  127. //}