DefaultBpmIdentity.java 1.16 KB
package com.hotent.entity;

import com.hotent.enums.ExtractType;

/**
 * @Author: Cola
 * @Date: 2021/12/05/10:28
 * @Description:
 **/
public class DefaultBpmIdentity {
    private String id;
    private String code;
    private String name;
    private String type;
    private String groupType;
    private ExtractType extractType;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getCode() {
        return code;
    }

    public void setCode(String code) {
        this.code = code;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public String getGroupType() {
        return groupType;
    }

    public void setGroupType(String groupType) {
        this.groupType = groupType;
    }

    public ExtractType getExtractType() {
        return extractType;
    }

    public void setExtractType(ExtractType extractType) {
        this.extractType = extractType;
    }
}