| | |
| | | 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; |
| | | |
| | | /** |
| | | * 工作流动作 |
| | |
| | | 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; |
| | |
| | | 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; |
| | | } |
| | | } |