HandledJob.java 1.17 KB
package com.model;

import lombok.Data;

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

    public HandledJob() {

    }

    public HandledJob(String type,String workId, String title, String handler, String handlerRole, int handleType,String handlecType) {
        this.type = type;
        this.workId = workId;
        this.title = title;
        this.handler = handler;
        this.handlerRole = handlerRole;
        this.handleType = handleType;
        this.handlecType = handlecType;
    }

    private int id;

    /**
     * 工单ID
     */
    private String workId;
    /**
     * 工单主题
     */
    private String title;
    /**
     * 工单类型
     */
    private String type;
    /**
     * 处理人
     */
    private String handler;
    /**
     * 处理人的职责 develop test operator
     */
    private String handlerRole;
    /**
     * 处理类型  1 发起  2 通过  3 驳回  -1 close 4 审核通过
     */
    private int handleType;

    private String handlecType;
    /**
     *
     */
    private String createTime;

    private String dbNeedTest;

    private String dbTestName;

}