package com.whyc.dto;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.ToString;
|
import org.apache.ibatis.type.Alias;
|
|
import java.util.List;
|
|
/**
|
* 工作流属性DTO
|
*/
|
@ToString
|
@ApiModel(value = "WorkflowPropertyDTO")
|
public class WorkflowPropertyDTO {
|
private Integer id;
|
private Integer linkType;
|
private String linkName;
|
private List<Integer> roleTypeList;
|
private List<String> roleNameList;
|
private Integer type;
|
|
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 String getLinkName() {
|
return linkName;
|
}
|
|
public void setLinkName(String linkName) {
|
this.linkName = linkName;
|
}
|
|
public List<Integer> getRoleTypeList() {
|
return roleTypeList;
|
}
|
|
public void setRoleTypeList(List<Integer> roleTypeList) {
|
this.roleTypeList = roleTypeList;
|
}
|
|
public List<String> getRoleNameList() {
|
return roleNameList;
|
}
|
|
public void setRoleNameList(List<String> roleNameList) {
|
this.roleNameList = roleNameList;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
}
|