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

com.envision.eos.event.api.bo.ConfirmValue Maven / Gradle / Ivy

Go to download

1.0 初版 1.1 增加了event的flag和custom_attr字段。 1.2 规范了api的命名

The newest version!
package com.envision.eos.event.api.bo;

import java.io.Serializable;

public class ConfirmValue implements Serializable {
	private static final long serialVersionUID = 1L;

	private String id;
	private Integer value;

	public String getId() {
		return id;
	}

	public void setId(String id) {
		this.id = id;
	}

	public Integer getValue() {
		return value;
	}

	public void setValue(Integer value) {
		this.value = value;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy