594 lines
18 KiB
Plaintext
594 lines
18 KiB
Plaintext
package com.nationalelectric.greenH5.po;
|
|
|
|
import java.util.List;
|
|
|
|
import org.codehaus.jackson.annotate.JsonProperty;
|
|
|
|
/**
|
|
* @author bonus
|
|
* @create 2023/6/15 10:06
|
|
* @Description 来访机事件实体类
|
|
**/
|
|
public class VisitorEventNotify implements java.io.Serializable {
|
|
|
|
@JsonProperty("method")
|
|
private String method;
|
|
@JsonProperty("params")
|
|
private ParamsDTO params;
|
|
|
|
public String getMethod() {
|
|
return method;
|
|
}
|
|
|
|
public void setMethod(String method) {
|
|
this.method = method;
|
|
}
|
|
|
|
public ParamsDTO getParams() {
|
|
return params;
|
|
}
|
|
|
|
public void setParams(ParamsDTO params) {
|
|
this.params = params;
|
|
}
|
|
|
|
public static class ParamsDTO {
|
|
@JsonProperty("ability")
|
|
private String ability;
|
|
@JsonProperty("events")
|
|
private List<EventsDTO> events;
|
|
@JsonProperty("sendTime")
|
|
private String sendTime;
|
|
|
|
public String getAbility() {
|
|
return ability;
|
|
}
|
|
|
|
public void setAbility(String ability) {
|
|
this.ability = ability;
|
|
}
|
|
|
|
public List<EventsDTO> getEvents() {
|
|
return events;
|
|
}
|
|
|
|
public void setEvents(List<EventsDTO> events) {
|
|
this.events = events;
|
|
}
|
|
|
|
public String getSendTime() {
|
|
return sendTime;
|
|
}
|
|
|
|
public void setSendTime(String sendTime) {
|
|
this.sendTime = sendTime;
|
|
}
|
|
|
|
public static class EventsDTO {
|
|
@JsonProperty("data")
|
|
private DataDTO data;
|
|
@JsonProperty("eventId")
|
|
private String eventId;
|
|
@JsonProperty("eventType")
|
|
private Integer eventType;
|
|
@JsonProperty("happenTime")
|
|
private String happenTime;
|
|
@JsonProperty("srcIndex")
|
|
private String srcIndex;
|
|
@JsonProperty("srcName")
|
|
private String srcName;
|
|
@JsonProperty("srcParentIndex")
|
|
private String srcParentIndex;
|
|
@JsonProperty("srcType")
|
|
private String srcType;
|
|
@JsonProperty("status")
|
|
private Integer status;
|
|
@JsonProperty("timeout")
|
|
private Integer timeout;
|
|
|
|
public DataDTO getData() {
|
|
return data;
|
|
}
|
|
|
|
public void setData(DataDTO data) {
|
|
this.data = data;
|
|
}
|
|
|
|
public String getEventId() {
|
|
return eventId;
|
|
}
|
|
|
|
public void setEventId(String eventId) {
|
|
this.eventId = eventId;
|
|
}
|
|
|
|
public Integer getEventType() {
|
|
return eventType;
|
|
}
|
|
|
|
public void setEventType(Integer eventType) {
|
|
this.eventType = eventType;
|
|
}
|
|
|
|
public String getHappenTime() {
|
|
return happenTime;
|
|
}
|
|
|
|
public void setHappenTime(String happenTime) {
|
|
this.happenTime = happenTime;
|
|
}
|
|
|
|
public String getSrcIndex() {
|
|
return srcIndex;
|
|
}
|
|
|
|
public void setSrcIndex(String srcIndex) {
|
|
this.srcIndex = srcIndex;
|
|
}
|
|
|
|
public String getSrcName() {
|
|
return srcName;
|
|
}
|
|
|
|
public void setSrcName(String srcName) {
|
|
this.srcName = srcName;
|
|
}
|
|
|
|
public String getSrcParentIndex() {
|
|
return srcParentIndex;
|
|
}
|
|
|
|
public void setSrcParentIndex(String srcParentIndex) {
|
|
this.srcParentIndex = srcParentIndex;
|
|
}
|
|
|
|
public String getSrcType() {
|
|
return srcType;
|
|
}
|
|
|
|
public void setSrcType(String srcType) {
|
|
this.srcType = srcType;
|
|
}
|
|
|
|
public Integer getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(Integer status) {
|
|
this.status = status;
|
|
}
|
|
|
|
public Integer getTimeout() {
|
|
return timeout;
|
|
}
|
|
|
|
public void setTimeout(Integer timeout) {
|
|
this.timeout = timeout;
|
|
}
|
|
|
|
public static class DataDTO {
|
|
@JsonProperty("barCode")
|
|
private String barCode;
|
|
@JsonProperty("beVisitedPersonId")
|
|
private String beVisitedPersonId;
|
|
@JsonProperty("beVisitedPersonName")
|
|
private String beVisitedPersonName;
|
|
@JsonProperty("beVisitedPersonOrg")
|
|
private String beVisitedPersonOrg;
|
|
@JsonProperty("beVisitedPersonOrgId")
|
|
private String beVisitedPersonOrgId;
|
|
@JsonProperty("birthplace")
|
|
private String birthplace;
|
|
@JsonProperty("captureUrl")
|
|
private Object captureUrl;
|
|
@JsonProperty("carNo")
|
|
private String carNo;
|
|
@JsonProperty("certAddr")
|
|
private String certAddr;
|
|
@JsonProperty("clientMacAddr")
|
|
private String clientMacAddr;
|
|
@JsonProperty("clientName")
|
|
private String clientName;
|
|
@JsonProperty("customa")
|
|
private String customa;
|
|
@JsonProperty("customb")
|
|
private String customb;
|
|
@JsonProperty("customc")
|
|
private String customc;
|
|
@JsonProperty("customd")
|
|
private String customd;
|
|
@JsonProperty("custome")
|
|
private String custome;
|
|
@JsonProperty("customf")
|
|
private String customf;
|
|
@JsonProperty("customg")
|
|
private String customg;
|
|
@JsonProperty("customh")
|
|
private String customh;
|
|
@JsonProperty("customi")
|
|
private String customi;
|
|
@JsonProperty("customj")
|
|
private String customj;
|
|
@JsonProperty("endTime")
|
|
private String endTime;
|
|
@JsonProperty("idNo")
|
|
private String idNo;
|
|
@JsonProperty("idType")
|
|
private Integer idType;
|
|
@JsonProperty("identitySvrCode")
|
|
private String identitySvrCode;
|
|
@JsonProperty("nationality")
|
|
private String nationality;
|
|
@JsonProperty("personName")
|
|
private String personName;
|
|
@JsonProperty("phone")
|
|
private String phone;
|
|
@JsonProperty("photoUrl")
|
|
private String photoUrl;
|
|
@JsonProperty("privilegeGroupIds")
|
|
private String privilegeGroupIds;
|
|
@JsonProperty("purpose")
|
|
private String purpose;
|
|
@JsonProperty("sex")
|
|
private Integer sex;
|
|
@JsonProperty("signOrg")
|
|
private String signOrg;
|
|
@JsonProperty("startTime")
|
|
private String startTime;
|
|
@JsonProperty("svrIndexCode")
|
|
private Object svrIndexCode;
|
|
@JsonProperty("tempCard")
|
|
private String tempCard;
|
|
@JsonProperty("temperatureStatus")
|
|
private Object temperatureStatus;
|
|
@JsonProperty("visitorAddress")
|
|
private String visitorAddress;
|
|
@JsonProperty("visitorCode")
|
|
private Object visitorCode;
|
|
@JsonProperty("visitorId")
|
|
private String visitorId;
|
|
@JsonProperty("visitorTemperature")
|
|
private Object visitorTemperature;
|
|
@JsonProperty("visitorWorkUint")
|
|
private String visitorWorkUint;
|
|
|
|
public String getBarCode() {
|
|
return barCode;
|
|
}
|
|
|
|
public void setBarCode(String barCode) {
|
|
this.barCode = barCode;
|
|
}
|
|
|
|
public String getBeVisitedPersonId() {
|
|
return beVisitedPersonId;
|
|
}
|
|
|
|
public void setBeVisitedPersonId(String beVisitedPersonId) {
|
|
this.beVisitedPersonId = beVisitedPersonId;
|
|
}
|
|
|
|
public String getBeVisitedPersonName() {
|
|
return beVisitedPersonName;
|
|
}
|
|
|
|
public void setBeVisitedPersonName(String beVisitedPersonName) {
|
|
this.beVisitedPersonName = beVisitedPersonName;
|
|
}
|
|
|
|
public String getBeVisitedPersonOrg() {
|
|
return beVisitedPersonOrg;
|
|
}
|
|
|
|
public void setBeVisitedPersonOrg(String beVisitedPersonOrg) {
|
|
this.beVisitedPersonOrg = beVisitedPersonOrg;
|
|
}
|
|
|
|
public String getBeVisitedPersonOrgId() {
|
|
return beVisitedPersonOrgId;
|
|
}
|
|
|
|
public void setBeVisitedPersonOrgId(String beVisitedPersonOrgId) {
|
|
this.beVisitedPersonOrgId = beVisitedPersonOrgId;
|
|
}
|
|
|
|
public String getBirthplace() {
|
|
return birthplace;
|
|
}
|
|
|
|
public void setBirthplace(String birthplace) {
|
|
this.birthplace = birthplace;
|
|
}
|
|
|
|
public Object getCaptureUrl() {
|
|
return captureUrl;
|
|
}
|
|
|
|
public void setCaptureUrl(Object captureUrl) {
|
|
this.captureUrl = captureUrl;
|
|
}
|
|
|
|
public String getCarNo() {
|
|
return carNo;
|
|
}
|
|
|
|
public void setCarNo(String carNo) {
|
|
this.carNo = carNo;
|
|
}
|
|
|
|
public String getCertAddr() {
|
|
return certAddr;
|
|
}
|
|
|
|
public void setCertAddr(String certAddr) {
|
|
this.certAddr = certAddr;
|
|
}
|
|
|
|
public String getClientMacAddr() {
|
|
return clientMacAddr;
|
|
}
|
|
|
|
public void setClientMacAddr(String clientMacAddr) {
|
|
this.clientMacAddr = clientMacAddr;
|
|
}
|
|
|
|
public String getClientName() {
|
|
return clientName;
|
|
}
|
|
|
|
public void setClientName(String clientName) {
|
|
this.clientName = clientName;
|
|
}
|
|
|
|
public String getCustoma() {
|
|
return customa;
|
|
}
|
|
|
|
public void setCustoma(String customa) {
|
|
this.customa = customa;
|
|
}
|
|
|
|
public String getCustomb() {
|
|
return customb;
|
|
}
|
|
|
|
public void setCustomb(String customb) {
|
|
this.customb = customb;
|
|
}
|
|
|
|
public String getCustomc() {
|
|
return customc;
|
|
}
|
|
|
|
public void setCustomc(String customc) {
|
|
this.customc = customc;
|
|
}
|
|
|
|
public String getCustomd() {
|
|
return customd;
|
|
}
|
|
|
|
public void setCustomd(String customd) {
|
|
this.customd = customd;
|
|
}
|
|
|
|
public String getCustome() {
|
|
return custome;
|
|
}
|
|
|
|
public void setCustome(String custome) {
|
|
this.custome = custome;
|
|
}
|
|
|
|
public String getCustomf() {
|
|
return customf;
|
|
}
|
|
|
|
public void setCustomf(String customf) {
|
|
this.customf = customf;
|
|
}
|
|
|
|
public String getCustomg() {
|
|
return customg;
|
|
}
|
|
|
|
public void setCustomg(String customg) {
|
|
this.customg = customg;
|
|
}
|
|
|
|
public String getCustomh() {
|
|
return customh;
|
|
}
|
|
|
|
public void setCustomh(String customh) {
|
|
this.customh = customh;
|
|
}
|
|
|
|
public String getCustomi() {
|
|
return customi;
|
|
}
|
|
|
|
public void setCustomi(String customi) {
|
|
this.customi = customi;
|
|
}
|
|
|
|
public String getCustomj() {
|
|
return customj;
|
|
}
|
|
|
|
public void setCustomj(String customj) {
|
|
this.customj = customj;
|
|
}
|
|
|
|
public String getEndTime() {
|
|
return endTime;
|
|
}
|
|
|
|
public void setEndTime(String endTime) {
|
|
this.endTime = endTime;
|
|
}
|
|
|
|
public String getIdNo() {
|
|
return idNo;
|
|
}
|
|
|
|
public void setIdNo(String idNo) {
|
|
this.idNo = idNo;
|
|
}
|
|
|
|
public Integer getIdType() {
|
|
return idType;
|
|
}
|
|
|
|
public void setIdType(Integer idType) {
|
|
this.idType = idType;
|
|
}
|
|
|
|
public String getIdentitySvrCode() {
|
|
return identitySvrCode;
|
|
}
|
|
|
|
public void setIdentitySvrCode(String identitySvrCode) {
|
|
this.identitySvrCode = identitySvrCode;
|
|
}
|
|
|
|
public String getNationality() {
|
|
return nationality;
|
|
}
|
|
|
|
public void setNationality(String nationality) {
|
|
this.nationality = nationality;
|
|
}
|
|
|
|
public String getPersonName() {
|
|
return personName;
|
|
}
|
|
|
|
public void setPersonName(String personName) {
|
|
this.personName = personName;
|
|
}
|
|
|
|
public String getPhone() {
|
|
return phone;
|
|
}
|
|
|
|
public void setPhone(String phone) {
|
|
this.phone = phone;
|
|
}
|
|
|
|
public String getPhotoUrl() {
|
|
return photoUrl;
|
|
}
|
|
|
|
public void setPhotoUrl(String photoUrl) {
|
|
this.photoUrl = photoUrl;
|
|
}
|
|
|
|
public String getPrivilegeGroupIds() {
|
|
return privilegeGroupIds;
|
|
}
|
|
|
|
public void setPrivilegeGroupIds(String privilegeGroupIds) {
|
|
this.privilegeGroupIds = privilegeGroupIds;
|
|
}
|
|
|
|
public String getPurpose() {
|
|
return purpose;
|
|
}
|
|
|
|
public void setPurpose(String purpose) {
|
|
this.purpose = purpose;
|
|
}
|
|
|
|
public Integer getSex() {
|
|
return sex;
|
|
}
|
|
|
|
public void setSex(Integer sex) {
|
|
this.sex = sex;
|
|
}
|
|
|
|
public String getSignOrg() {
|
|
return signOrg;
|
|
}
|
|
|
|
public void setSignOrg(String signOrg) {
|
|
this.signOrg = signOrg;
|
|
}
|
|
|
|
public String getStartTime() {
|
|
return startTime;
|
|
}
|
|
|
|
public void setStartTime(String startTime) {
|
|
this.startTime = startTime;
|
|
}
|
|
|
|
public Object getSvrIndexCode() {
|
|
return svrIndexCode;
|
|
}
|
|
|
|
public void setSvrIndexCode(Object svrIndexCode) {
|
|
this.svrIndexCode = svrIndexCode;
|
|
}
|
|
|
|
public String getTempCard() {
|
|
return tempCard;
|
|
}
|
|
|
|
public void setTempCard(String tempCard) {
|
|
this.tempCard = tempCard;
|
|
}
|
|
|
|
public Object getTemperatureStatus() {
|
|
return temperatureStatus;
|
|
}
|
|
|
|
public void setTemperatureStatus(Object temperatureStatus) {
|
|
this.temperatureStatus = temperatureStatus;
|
|
}
|
|
|
|
public String getVisitorAddress() {
|
|
return visitorAddress;
|
|
}
|
|
|
|
public void setVisitorAddress(String visitorAddress) {
|
|
this.visitorAddress = visitorAddress;
|
|
}
|
|
|
|
public Object getVisitorCode() {
|
|
return visitorCode;
|
|
}
|
|
|
|
public void setVisitorCode(Object visitorCode) {
|
|
this.visitorCode = visitorCode;
|
|
}
|
|
|
|
public String getVisitorId() {
|
|
return visitorId;
|
|
}
|
|
|
|
public void setVisitorId(String visitorId) {
|
|
this.visitorId = visitorId;
|
|
}
|
|
|
|
public Object getVisitorTemperature() {
|
|
return visitorTemperature;
|
|
}
|
|
|
|
public void setVisitorTemperature(Object visitorTemperature) {
|
|
this.visitorTemperature = visitorTemperature;
|
|
}
|
|
|
|
public String getVisitorWorkUint() {
|
|
return visitorWorkUint;
|
|
}
|
|
|
|
public void setVisitorWorkUint(String visitorWorkUint) {
|
|
this.visitorWorkUint = visitorWorkUint;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|