![JAR search and dependency download from the Maven repository](/logo.png)
com.envision.eos.event.api.bo.ConfirmInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enos-event-api Show documentation
Show all versions of enos-event-api Show documentation
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;
import java.util.List;
public class ConfirmInfo implements Serializable {
private static final long serialVersionUID = 1L;
private String siteId;
private List confirmValues;
public String getSiteId() {
return siteId;
}
public void setSiteId(String siteId) {
this.siteId = siteId;
}
public List getConfirmValues() {
return confirmValues;
}
public void setConfirmValues(List confirmValues) {
this.confirmValues = confirmValues;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy