package cn.ksource.core.workflow;
|
|
import java.util.List;
|
import java.util.Map;
|
|
public class WorkflowStartEntity {
|
|
/**
|
* 流程创建人编号
|
*/
|
private String userId;
|
|
/**
|
* 流程创建人名称
|
*/
|
private String userName;
|
|
/**
|
* 流程业务编号
|
*/
|
private String businessId;
|
|
/**
|
* 流程业务类型
|
*/
|
private Integer businessType;
|
|
/**
|
* 流程客户编号
|
*/
|
private String customerId;
|
|
/**
|
* 流程客户名称
|
*/
|
private String customerName;
|
|
/**
|
* 流程加盟商编号
|
*/
|
private String partnerId;
|
|
/**
|
* 流程加盟商名称
|
*/
|
private String partnerName;
|
|
/**
|
* 工单编号
|
*/
|
private String orderCode;
|
|
/**
|
* 设备编号CI_ID等信息
|
*/
|
private List<Map> ciList;
|
|
/**
|
* 流程名称
|
*/
|
private String flowName;
|
|
/**
|
* 备注
|
*/
|
private String note;
|
|
|
/**
|
* 流程描述
|
*/
|
private String wfNote;
|
|
|
/**
|
* 项目编号
|
*/
|
private String projectId;
|
|
/**
|
* 项目名称
|
*/
|
private String projectName;
|
|
/**
|
* 下级单位编号
|
*/
|
private String subCustomerId;
|
|
/**
|
* 下级单位名称
|
*/
|
private String subCustomerName;
|
|
|
|
|
/**
|
* 获取流程描述
|
* @return
|
* @version V1.0.0
|
* @author 杨凯
|
* @date May 4, 2015 4:42:42 PM
|
*/
|
public String getWfNote() {
|
return wfNote;
|
}
|
|
/**
|
* 设置流程描述
|
* @param wfNote
|
* @version V1.0.0
|
* @author 杨凯
|
* @date May 4, 2015 4:42:51 PM
|
*/
|
public void setWfNote(String wfNote) {
|
this.wfNote = wfNote;
|
}
|
|
|
public String getUserId() {
|
return userId;
|
}
|
|
public void setUserId(String userId) {
|
this.userId = userId;
|
}
|
|
public String getUserName() {
|
return userName;
|
}
|
|
public void setUserName(String userName) {
|
this.userName = userName;
|
}
|
|
public String getBusinessId() {
|
return businessId;
|
}
|
|
public void setBusinessId(String businessId) {
|
this.businessId = businessId;
|
}
|
|
public Integer getBusinessType() {
|
return businessType;
|
}
|
|
public void setBusinessType(Integer businessType) {
|
this.businessType = businessType;
|
}
|
|
public String getCustomerId() {
|
return customerId;
|
}
|
|
public void setCustomerId(String customerId) {
|
this.customerId = customerId;
|
}
|
|
public String getOrderCode() {
|
return orderCode;
|
}
|
|
public void setOrderCode(String orderCode) {
|
this.orderCode = orderCode;
|
}
|
|
public String getFlowName() {
|
return flowName;
|
}
|
|
public void setFlowName(String flowName) {
|
this.flowName = flowName;
|
}
|
|
public String getNote() {
|
return note;
|
}
|
|
public void setNote(String note) {
|
this.note = note;
|
}
|
|
public List<Map> getCiList() {
|
return ciList;
|
}
|
|
public void setCiList(List<Map> ciList) {
|
this.ciList = ciList;
|
}
|
|
public String getCustomerName() {
|
return customerName;
|
}
|
|
public void setCustomerName(String customerName) {
|
this.customerName = customerName;
|
}
|
|
public String getPartnerId() {
|
return partnerId;
|
}
|
|
public void setPartnerId(String partnerId) {
|
this.partnerId = partnerId;
|
}
|
|
public String getPartnerName() {
|
return partnerName;
|
}
|
|
public void setPartnerName(String partnerName) {
|
this.partnerName = partnerName;
|
}
|
|
public String getProjectId() {
|
return projectId;
|
}
|
|
public void setProjectId(String projectId) {
|
this.projectId = projectId;
|
}
|
|
public String getProjectName() {
|
return projectName;
|
}
|
|
public void setProjectName(String projectName) {
|
this.projectName = projectName;
|
}
|
|
public String getSubCustomerId() {
|
return subCustomerId;
|
}
|
|
public void setSubCustomerId(String subCustomerId) {
|
this.subCustomerId = subCustomerId;
|
}
|
|
public String getSubCustomerName() {
|
return subCustomerName;
|
}
|
|
public void setSubCustomerName(String subCustomerName) {
|
this.subCustomerName = subCustomerName;
|
}
|
|
|
}
|