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<Role> roleList;
|
private Integer type;
|
|
@ToString
|
public static class Role{
|
private Integer type;
|
private String name;
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
}
|
|
//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<Role> getRoleList() {
|
return roleList;
|
}
|
|
public void setRoleList(List<Role> roleList) {
|
this.roleList = roleList;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
}
|