com.envision.event.api.EventConfirmRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eos-event-api-new Show documentation
Show all versions of eos-event-api-new Show documentation
1.0 初版
1.1 增加了event的flag和custom_attr字段。
The newest version!
package com.envision.event.api;
import java.io.Serializable;
/**
* 事件确认请求
*
* @author kang.ouyang
*
*/
public class EventConfirmRequest implements Serializable{
/**
* 事件id
*/
private String eventId;
/**
* 确认人
*/
private String confirmPerson;
/**
* 确认值
*/
private String confirmValue;
public String getEventId() {
return eventId;
}
public void setEventId(String eventId) {
this.eventId = eventId;
}
public String getConfirmPerson() {
return confirmPerson;
}
public void setConfirmPerson(String confirmPerson) {
this.confirmPerson = confirmPerson;
}
public String getConfirmValue() {
return confirmValue;
}
public void setConfirmValue(String confirmValue) {
this.confirmValue = confirmValue;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy