package com.whyc.dto;
|
|
public class WorkflowPropertyDTO2 {
|
|
private String id;
|
private String linkType;
|
private String linkName;
|
private String roleType;
|
private String roleName;
|
private Integer type;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getLinkType() {
|
return linkType;
|
}
|
|
public void setLinkType(String linkType) {
|
this.linkType = linkType;
|
}
|
|
public String getLinkName() {
|
return linkName;
|
}
|
|
public void setLinkName(String linkName) {
|
this.linkName = linkName;
|
}
|
|
public String getRoleType() {
|
return roleType;
|
}
|
|
public void setRoleType(String roleType) {
|
this.roleType = roleType;
|
}
|
|
public String getRoleName() {
|
return roleName;
|
}
|
|
public void setRoleName(String roleName) {
|
this.roleName = roleName;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
}
|