package com.hotent.entity; /** * 任务转办、加签参数对象 * * @company 广州宏天软件股份有限公司 * @author zhangxianwen * @email zhangxw@jee-soft.cn * @date 2018年6月28日 */ public class AssignParamObject { /** 用户帐号 */ private String account; /** 任务id */ private String taskId; /** 消息通知类型 非必填,默认邮件,inner(内部消息),mail(邮件),sms(短信),多个之单使用英文逗号隔开 */ private String messageType = "mail"; /** 意见 */ private String opinion; /** 转办、加签用户id,多个id之间用逗号分隔*/ private String userId; /** 表单bo数据 */ protected String formData; protected String files = ""; /* 附件 */ protected String formKey = ""; public String getFormData() { return formData; } public void setFormData(String formData) { this.formData = formData; } public String getFiles() { return files; } public void setFiles(String files) { this.files = files; } public String getAccount() { return account; } public void setAccount(String account) { this.account = account; } public String getTaskId() { return taskId; } public void setTaskId(String taskId) { this.taskId = taskId; } public String getMessageType() { return messageType; } public void setMessageType(String messageType) { this.messageType = messageType; } public String getOpinion() { return opinion; } public void setOpinion(String opinion) { this.opinion = opinion; } public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public String getFormKey() { return formKey; } public void setFormKey(String formKey) { this.formKey = formKey; } }