whyclxw
2025-05-28 e16302f9d475c7cc4dd18c5abf1a23cb5502e362
src/main/java/com/whyc/pojo/WorkflowAction.java
@@ -1,8 +1,11 @@
package com.whyc.pojo;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.ToString;
import org.apache.ibatis.type.Alias;
import java.util.List;
/**
 * 工作流动作
@@ -15,6 +18,14 @@
    private Integer linkType;
    private Integer roleType;
    private Integer actionType;
    private Integer type;
    @TableField(exist = false)
    private String roleName;
    @TableField(exist = false)
    private List<Integer> actionTypeList;
    public Integer getId() {
        return id;
@@ -47,4 +58,20 @@
    public void setActionType(Integer actionType) {
        this.actionType = actionType;
    }
    public Integer getType() {
        return type;
    }
    public void setType(Integer type) {
        this.type = type;
    }
    public List<Integer> getActionTypeList() {
        return actionTypeList;
    }
    public void setActionTypeList(List<Integer> actionTypeList) {
        this.actionTypeList = actionTypeList;
    }
}