| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- package com.goafanti.common.model;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * task_stop_log
- * @author
- */
- public class TaskStopLog implements Serializable {
- private Long id;
- /**
- * 任务暂停编号
- */
- private Long taskStopId;
- /**
- * 审核状态 0=发起,1=通过,2=拒绝
- */
- private Integer status;
- /**
- * 原因
- */
- private String reason;
- /**
- * 创建者
- */
- private String createBy;
- /**
- * 创建时间
- */
- private Date createTime;
- private static final long serialVersionUID = 1L;
- public Long getId() {
- return id;
- }
- public void setId(Long id) {
- this.id = id;
- }
- public Long getTaskStopId() {
- return taskStopId;
- }
- public void setTaskStopId(Long taskStopId) {
- this.taskStopId = taskStopId;
- }
- public Integer getStatus() {
- return status;
- }
- public void setStatus(Integer status) {
- this.status = status;
- }
- public String getReason() {
- return reason;
- }
- public void setReason(String reason) {
- this.reason = reason;
- }
- public String getCreateBy() {
- return createBy;
- }
- public void setCreateBy(String createBy) {
- this.createBy = createBy;
- }
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- }
|