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;
|
|
/**
|
* 工作流动作
|
*/
|
@ToString
|
@Alias("WorkflowAction")
|
@TableName(schema = "web_site",value = "tb_workflow_action")
|
public class WorkflowAction {
|
private Integer id;
|
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 setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getLinkType() {
|
return linkType;
|
}
|
|
public void setLinkType(Integer linkType) {
|
this.linkType = linkType;
|
}
|
|
public Integer getRoleType() {
|
return roleType;
|
}
|
|
public void setRoleType(Integer roleType) {
|
this.roleType = roleType;
|
}
|
|
public Integer getActionType() {
|
return actionType;
|
}
|
|
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;
|
}
|
}
|