CopyFlow.java 1.49 KB
package com.hotent.bpmModel.params;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;

@ApiModel(description = "复制流程信息")
public class CopyFlow {

    @ApiModelProperty(name = "defId", notes = "被复制流程id", required = true)
    private String defId;
    @ApiModelProperty(name = "isPersonal", notes = "新流程key", required = true)
    private String defKey;
    @ApiModelProperty(name = "isPersonal", notes = "新流程名称", required = true)
    private String name;
    @ApiModelProperty(name = "typeId", notes = "新流程分类id(不填使用老流程分类)", required = false)
    private String typeId;
    @ApiModelProperty(name = "typeName", notes = "新流程分类名称(不填使用老流程分类)", required = false)
    private String typeName;

    public String getDefId() {
        return defId;
    }

    public void setDefId(String defId) {
        this.defId = defId;
    }

    public String getDefKey() {
        return defKey;
    }

    public void setDefKey(String defKey) {
        this.defKey = defKey;
    }

    public String getName() {
        return name;
    }

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

    public String getTypeId() {
        return typeId;
    }

    public void setTypeId(String typeId) {
        this.typeId = typeId;
    }

    public String getTypeName() {
        return typeName;
    }

    public void setTypeName(String typeName) {
        this.typeName = typeName;
    }
}