All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.envision.event.api.EventConfirmRequest Maven / Gradle / Ivy

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