TaskStopLog.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. package com.goafanti.common.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. /**
  5. * task_stop_log
  6. * @author
  7. */
  8. public class TaskStopLog implements Serializable {
  9. private Long id;
  10. /**
  11. * 任务暂停编号
  12. */
  13. private Long taskStopId;
  14. /**
  15. * 审核状态 0=发起,1=通过,2=拒绝
  16. */
  17. private Integer status;
  18. /**
  19. * 原因
  20. */
  21. private String reason;
  22. /**
  23. * 创建者
  24. */
  25. private String createBy;
  26. /**
  27. * 创建时间
  28. */
  29. private Date createTime;
  30. private static final long serialVersionUID = 1L;
  31. public Long getId() {
  32. return id;
  33. }
  34. public void setId(Long id) {
  35. this.id = id;
  36. }
  37. public Long getTaskStopId() {
  38. return taskStopId;
  39. }
  40. public void setTaskStopId(Long taskStopId) {
  41. this.taskStopId = taskStopId;
  42. }
  43. public Integer getStatus() {
  44. return status;
  45. }
  46. public void setStatus(Integer status) {
  47. this.status = status;
  48. }
  49. public String getReason() {
  50. return reason;
  51. }
  52. public void setReason(String reason) {
  53. this.reason = reason;
  54. }
  55. public String getCreateBy() {
  56. return createBy;
  57. }
  58. public void setCreateBy(String createBy) {
  59. this.createBy = createBy;
  60. }
  61. public Date getCreateTime() {
  62. return createTime;
  63. }
  64. public void setCreateTime(Date createTime) {
  65. this.createTime = createTime;
  66. }
  67. }