PendingJob.java 1004 Bytes
package com.model;

import lombok.Data;

import java.util.List;

/**
 * Created by zhengyouwei on 2016/9/2.
 * <p>
 * 待处理工单列表
 */
@Data
public class PendingJob {

    public PendingJob() {

    }

    public PendingJob(String type,String workId, String title, String handler, String handlerRole, int currentStatus) {
        this.type = type;
        this.workId = workId;
        this.title = title;
        this.handler = handler;
        this.handlerRole = handlerRole;
        this.currentStatus = currentStatus;
    }


    private int id;

    /**
     * 工单ID
     */
    private String workId;
    /**
     * 主题
     */
    private String title;
    /**
     * 类型  release or
     */
    private String type;
    /**
     * 待处理人
     */
    private String handler;
    /**
     * 当前状态
     */
    private int currentStatus;

    /**
     * 处理人的职责 develop test operator
     */
    private String handlerRole;

    private String createTime;
}