Initial commit: reorganized source tree

- backend/: 13 Maven modules (cw-elevator-application, cloudwalk-cloud, intelligent-cwoscomponent, ninca-crk, etc.)
- frontend/: 4 Vue projects (elevator-front, cwos-portal, alarm-front, front_acs) + decompiled + scripts
- scripts/: build, test-env, tools (Docker Compose, service templates, API parity)
- docs/: AGENTS.md, superpowers specs, architecture docs
- .gitignore: standard Java/Maven exclusions

Moved from legacy maven-*/ root layout to backend/ organized structure.
This commit is contained in:
hpd840321
2026-05-09 09:00:12 +08:00
commit 7b2bd307f1
7260 changed files with 612980 additions and 0 deletions
@@ -0,0 +1,50 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.18.RELEASE</version>
<relativePath/>
</parent>
<groupId>cn.cloudwalk.cloud</groupId>
<artifactId>cwos-sdk-event</artifactId>
<version>1.5.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>cwos-sdk-event</name>
<description>源码来自 反1 zip。原 POM 依赖 reflections-mavenJFrog 已下线),改为 org.reflections:reflections。</description>
<properties>
<java.version>1.8</java.version>
<kafka.clients.version>0.11.0.3</kafka.clients.version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
<version>${kafka.clients.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.83</version>
</dependency>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.9.12</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
</dependencies>
</project>
@@ -0,0 +1,94 @@
package cn.cloudwalk.cwos.client.event;
import cn.cloudwalk.cwos.client.event.event.BaseEvent;
import cn.cloudwalk.cwos.client.event.event.CustomEvent;
import cn.cloudwalk.cwos.client.event.event.EventType;
import cn.cloudwalk.cwos.client.event.exception.ClientNotInitException;
import cn.cloudwalk.cwos.client.event.exception.EventNotMathEventTypeException;
import cn.cloudwalk.cwos.client.event.exception.ListenerClassException;
import cn.cloudwalk.cwos.client.event.exception.ParamException;
import cn.cloudwalk.cwos.client.event.handler.EventListener;
import cn.cloudwalk.cwos.client.event.handler.EventSingleSubEventListener;
import cn.cloudwalk.cwos.client.event.service.EventService;
import cn.cloudwalk.cwos.client.event.service.impl.EventServiceImpl;
import org.apache.commons.lang3.StringUtils;
public class EventClient {
private String bootstrapServers;
private String groupId;
private boolean init;
private EventService eventService;
private Class listenerClass;
public static EventClient getInstance(String bootstrapServers, String groupId) {
if (StringUtils.isEmpty(bootstrapServers)) {
throw new ParamException("bootstrapServers 不能为空");
}
if (StringUtils.isEmpty(groupId)) {
return new EventClient(bootstrapServers);
}
return new EventClient(bootstrapServers, groupId);
}
public EventClient init() {
this.eventService = (EventService) new EventServiceImpl(this.bootstrapServers, this.groupId);
this.init = true;
return this;
}
public EventClient setWorkNum(Integer workThread) {
this.eventService.setWorkNum(workThread);
return this;
}
public EventClient setListenerClass(Class<?> cls) {
if (!EventListener.class.isAssignableFrom(cls)) {
throw new ListenerClassException("ListenerClass must implements ");
}
this.listenerClass = cls;
this.eventService.setListenerClass(this.listenerClass);
return this;
}
public void subEvent(EventType eventType, String serviceCode) {
if (!this.init) {
throw new ClientNotInitException("client not init");
}
this.eventService.subEvent(eventType, serviceCode);
}
public void subEvent(String topic, String serviceCode, CustomEvent eventClass) {
if (!this.init) {
throw new ClientNotInitException("client not init");
}
this.eventService.subEvent(topic, serviceCode, eventClass);
}
public void subEvent(EventType eventType, String serviceCode,
EventSingleSubEventListener eventSingleSubEventListener) {
if (!this.init) {
throw new ClientNotInitException("client not init");
}
if (!eventSingleSubEventListener.returnClass().isAssignableFrom(eventType.getEventClass().getClass())) {
throw new EventNotMathEventTypeException("订阅类型与实现类不一致");
}
this.eventService.subEvent(eventType, serviceCode, eventSingleSubEventListener);
}
public void pubEvent(BaseEvent event) {
if (!this.init) {
throw new ClientNotInitException("client not init");
}
this.eventService.pubEvent(event);
}
private EventClient(String bootstrapServers, String groupId) {
this.bootstrapServers = bootstrapServers;
this.groupId = groupId;
}
private EventClient(String bootstrapServers) {
this.bootstrapServers = bootstrapServers;
}
}
@@ -0,0 +1,33 @@
package cn.cloudwalk.cwos.client.event.config;
import cn.cloudwalk.cwos.client.event.properties.KafkaProperties;
public class Config {
private String messageStore = "KAFKA_STORE";
private KafkaProperties kafkaProperties = new KafkaProperties();
public static Config getInstance(String bootstrapServers, String groupId) {
return new Config(bootstrapServers, groupId);
}
private Config(String bootstrapServers, String groupId) {
this.kafkaProperties.setBootstrapServers(bootstrapServers);
this.kafkaProperties.setGroupId(groupId);
}
public String getMessageStore() {
return this.messageStore;
}
public void setMessageStore(String messageStore) {
this.messageStore = messageStore;
}
public KafkaProperties getKafkaProperties() {
return this.kafkaProperties;
}
public void setKafkaProperties(KafkaProperties kafkaProperties) {
this.kafkaProperties = kafkaProperties;
}
}
@@ -0,0 +1,5 @@
package cn.cloudwalk.cwos.client.event.config;
public class Constants {
public static final String KAFKA_MESSAGE_STORE = "KAFKA_STORE";
}
@@ -0,0 +1,18 @@
package cn.cloudwalk.cwos.client.event.consumer;
import cn.cloudwalk.cwos.client.event.event.EventType;
import cn.cloudwalk.cwos.client.event.handler.EventSingleSubEventListener;
public interface Consumer {
void pull();
void pull(EventType paramEventType, EventSingleSubEventListener paramEventSingleSubEventListener);
void initListener();
void setListenerClass(Class paramClass);
void setWorkerNum(Integer paramInteger);
void addEventListener(EventType paramEventType, EventSingleSubEventListener paramEventSingleSubEventListener);
}
@@ -0,0 +1,245 @@
package cn.cloudwalk.cwos.client.event.consumer;
import cn.cloudwalk.cwos.client.event.event.BaseEvent;
import cn.cloudwalk.cwos.client.event.event.EventType;
import cn.cloudwalk.cwos.client.event.exception.NoneClassImplementsException;
import cn.cloudwalk.cwos.client.event.handler.EventListener;
import cn.cloudwalk.cwos.client.event.handler.EventSingleSubEventListener;
import cn.cloudwalk.cwos.client.event.properties.KafkaProperties;
import com.alibaba.fastjson.JSONObject;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
import org.apache.kafka.clients.consumer.ConsumerRecord;
import org.apache.kafka.clients.consumer.ConsumerRecords;
import org.reflections.Reflections;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class KafkaConsumer implements Consumer {
private Logger logger = LoggerFactory.getLogger(getClass());
private ConcurrentHashMap<Long, org.apache.kafka.clients.consumer.KafkaConsumer<String, String>> consumers;
private ConcurrentHashMap<String, BaseEvent> customEvents;
private List<Lock> locks;
private Class<EventListener> listenerClass;
private ConcurrentHashMap<String, EventSingleSubEventListener> eventListeners;
private EventListener eventListener;
private ThreadPoolExecutor threadPoolExecutor;
private Integer workerNum = Integer.valueOf(5);
public static KafkaConsumer getInstance(KafkaProperties kafkaProperties, String topic, Integer workerNum) {
return new KafkaConsumer(kafkaProperties, topic, workerNum);
}
public void addTopic(String topic) {
for (Map.Entry<Long, org.apache.kafka.clients.consumer.KafkaConsumer<String, String>> entry : this.consumers
.entrySet()) {
((Lock) this.locks.get(((Long) entry.getKey()).intValue() - 1)).lock();
try {
Set<String> topics = new HashSet<>(
((org.apache.kafka.clients.consumer.KafkaConsumer) entry.getValue()).subscription());
topics.add(topic);
((org.apache.kafka.clients.consumer.KafkaConsumer) entry.getValue()).subscribe(topics);
this.logger.debug("<------添加topic{}成功------>", topic);
} finally {
((Lock) this.locks.get(((Long) entry.getKey()).intValue() - 1)).unlock();
}
}
}
public void addEventType(String eventType, BaseEvent eventClass) {
this.customEvents.putIfAbsent(eventType, eventClass);
}
@Override
@SuppressWarnings("unchecked")
public void setListenerClass(Class listenerClass) {
this.listenerClass = (Class<EventListener>) listenerClass;
}
public void addEventListener(EventType eventType, EventSingleSubEventListener eventSingleSubEventListener) {
this.eventListeners.put(eventType.getCode(), eventSingleSubEventListener);
}
public EventListener getEventListener() {
return this.eventListener;
}
public void setWorkerNum(Integer workerNum) {
this.workerNum = workerNum;
}
private KafkaConsumer(KafkaProperties kafkaProperties, String topic, Integer workerNum) {
this.customEvents = new ConcurrentHashMap<>();
this.eventListeners = new ConcurrentHashMap<>();
this.consumers = new ConcurrentHashMap<>();
this.locks = new ArrayList<>();
this.workerNum = workerNum;
long i;
for (i = 1L; i <= workerNum.intValue(); i++) {
Properties properties = new Properties();
properties.put("bootstrap.servers", kafkaProperties.getBootstrapServers());
properties.put("group.id", kafkaProperties.getGroupId());
properties.put("session.timeout.ms", kafkaProperties.getSessionTimeoutMs());
properties.put("enable.auto.commit", kafkaProperties.getEnableAutoCommit());
properties.put("auto.commit.interval.ms", kafkaProperties.getAutoCommitIntervalMs());
properties.put("auto.offset.reset", kafkaProperties.getAutoOffsetReset());
properties.put("key.deserializer", "org.apache.kafka.common.serialization.StringDeserializer");
properties.put("value.deserializer", "org.apache.kafka.common.serialization.StringDeserializer");
org.apache.kafka.clients.consumer.KafkaConsumer<String, String> kafkaConsumer = new org.apache.kafka.clients.consumer.KafkaConsumer(
properties);
kafkaConsumer.subscribe(Arrays.asList(new String[] { topic }));
this.consumers.put(Long.valueOf(i), kafkaConsumer);
this.locks.add(new ReentrantLock(true));
}
this.threadPoolExecutor = new ThreadPoolExecutor(workerNum.intValue(), workerNum.intValue(), 60L,
TimeUnit.SECONDS, new LinkedBlockingQueue<>());
}
public void pull() {
try {
if (this.listenerClass == null) {
if (this.eventListener == null) {
Reflections reflections = new Reflections(new Object[0]);
Set<Class<? extends EventListener>> subTypes = reflections.getSubTypesOf(EventListener.class);
if (subTypes.size() == 1) {
EventListener eventListener = ((Class<EventListener>) subTypes.iterator().next())
.getDeclaredConstructor().newInstance();
this.eventListener = eventListener;
pullThread();
} else {
throw new NoneClassImplementsException("none class or than one");
}
} else {
pullThread();
}
} else {
if (this.eventListener == null) {
this.eventListener = this.listenerClass.getDeclaredConstructor().newInstance();
}
pullThread();
}
} catch (Exception e) {
this.logger.error("KafkaConsumer.pull 初始化失败", e);
}
}
public void initListener() {
try {
if (this.listenerClass == null) {
if (this.eventListener == null) {
Reflections reflections = new Reflections(new Object[0]);
Set<Class<? extends EventListener>> subTypes = reflections.getSubTypesOf(EventListener.class);
if (subTypes.size() == 1) {
EventListener eventListener = ((Class<EventListener>) subTypes.iterator().next())
.getDeclaredConstructor().newInstance();
this.eventListener = eventListener;
} else {
throw new NoneClassImplementsException("none class or than one");
}
} else {
pullThread();
}
} else if (this.eventListener == null) {
this.eventListener = this.listenerClass.getDeclaredConstructor().newInstance();
}
} catch (Exception e) {
this.logger.error("KafkaConsumer.initListener 失败", e);
}
}
public void pull(EventType eventType, EventSingleSubEventListener eventSingleSubEventListener) {
try {
this.eventListeners.put(eventType.getCode(), eventSingleSubEventListener);
pullThread();
} catch (Exception e) {
this.logger.error("KafkaConsumer.pull(eventType) 失败", e);
}
}
private void pullThread() {
Long sign = Long.valueOf(0L);
while (this.threadPoolExecutor.getActiveCount() < this.threadPoolExecutor.getCorePoolSize()) {
Long long_1 = sign, long_2 = sign = Long.valueOf(sign.longValue() + 1L);
this.threadPoolExecutor.execute(new ConsumerThread(sign));
}
}
class ConsumerThread extends Thread {
private Long sign;
public ConsumerThread(Long sign) {
this.sign = sign;
}
public void run() {
while (true) {
((Lock) KafkaConsumer.this.locks.get(this.sign.intValue() - 1)).lock();
try {
ConsumerRecords<String, String> records = ((org.apache.kafka.clients.consumer.KafkaConsumer) KafkaConsumer.this.consumers
.get(this.sign)).poll(1000L);
for (ConsumerRecord<String, String> record : records) {
String value = (String) record.value();
String key = (String) record.key();
KafkaConsumer.this.logger.debug("kafka receive key={},value={}", key, value);
try {
if (!KafkaConsumer.this.customEvents.isEmpty()
&& KafkaConsumer.this.customEvents.containsKey(key)) {
BaseEvent baseEvent = (BaseEvent) JSONObject.parseObject(value,
((BaseEvent) KafkaConsumer.this.customEvents.get(key)).getClass());
KafkaConsumer.this.eventListener.messageListener(baseEvent);
}
for (EventType eventType : EventType.values()) {
if (eventType.getCode().equals(key)) {
BaseEvent baseEvent = (BaseEvent) JSONObject.parseObject(value,
eventType.getEventClass().getClass());
if (!KafkaConsumer.this.eventListeners.isEmpty()
&& KafkaConsumer.this.eventListeners.containsKey(key)) {
((EventSingleSubEventListener) KafkaConsumer.this.eventListeners.get(key))
.messageListener(baseEvent);
} else {
KafkaConsumer.this.eventListener.messageListener(baseEvent);
}
}
}
} catch (Exception e) {
KafkaConsumer.this.logger.error("failed consume message key={},value={}",
new Object[] { key, value, e });
}
}
} catch (Exception e) {
KafkaConsumer.this.logger.error("failed consume message", e);
} finally {
((Lock) KafkaConsumer.this.locks.get(this.sign.intValue() - 1)).unlock();
}
}
}
}
}
@@ -0,0 +1,34 @@
package cn.cloudwalk.cwos.client.event.event;
import cn.cloudwalk.cwos.client.event.event.mode.DeviceAlarm;
import java.util.List;
public class AntiepidemicAlarmEvent extends BaseEvent {
private String tempPanoramaImageUrl;
private String capturePanoramaImageUrl;
private List<DeviceAlarm> models;
public String getTempPanoramaImageUrl() {
return this.tempPanoramaImageUrl;
}
public void setTempPanoramaImageUrl(String tempPanoramaImageUrl) {
this.tempPanoramaImageUrl = tempPanoramaImageUrl;
}
public String getCapturePanoramaImageUrl() {
return this.capturePanoramaImageUrl;
}
public void setCapturePanoramaImageUrl(String capturePanoramaImageUrl) {
this.capturePanoramaImageUrl = capturePanoramaImageUrl;
}
public List<DeviceAlarm> getModels() {
return this.models;
}
public void setModels(List<DeviceAlarm> models) {
this.models = models;
}
}
@@ -0,0 +1,96 @@
package cn.cloudwalk.cwos.client.event.event;
import java.util.Map;
public abstract class BaseEvent {
private String messageId;
private String deviceId;
private String eventType;
private String serviceCode;
private String applicationId;
private String businessId;
private String deviceName;
private String reserveInfo;
private String logId;
private Map<String, Object> extend;
public String getMessageId() {
return this.messageId;
}
public void setMessageId(String messageId) {
this.messageId = messageId;
}
public String getEventType() {
return this.eventType;
}
public void setEventType(String eventType) {
this.eventType = eventType;
}
public String getServiceCode() {
return this.serviceCode;
}
public void setServiceCode(String serviceCode) {
this.serviceCode = serviceCode;
}
public Map<String, Object> getExtend() {
return this.extend;
}
public void setExtend(Map<String, Object> extend) {
this.extend = extend;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getApplicationId() {
return this.applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
}
public String getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public String getReserveInfo() {
return this.reserveInfo;
}
public void setReserveInfo(String reserveInfo) {
this.reserveInfo = reserveInfo;
}
public String getLogId() {
return this.logId;
}
public void setLogId(String logId) {
this.logId = logId;
}
}
@@ -0,0 +1,34 @@
package cn.cloudwalk.cwos.client.event.event;
import cn.cloudwalk.cwos.client.event.event.mode.BodyReidPerson;
import java.util.List;
public class BodyCaptureEvent extends BaseEvent {
private List<BodyReidPerson> person;
private String deviceName;
private int flag;
public List<BodyReidPerson> getPerson() {
return this.person;
}
public void setPerson(List<BodyReidPerson> person) {
this.person = person;
}
public String getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public int getFlag() {
return this.flag;
}
public void setFlag(int flag) {
this.flag = flag;
}
}
@@ -0,0 +1,34 @@
package cn.cloudwalk.cwos.client.event.event;
import cn.cloudwalk.cwos.client.event.event.mode.BodyPose;
import java.util.List;
public class BodyKeyPointsEvent extends BaseEvent {
private String imageId;
private String imagePath;
private List<BodyPose> bodyPoses;
public String getImageId() {
return this.imageId;
}
public void setImageId(String imageId) {
this.imageId = imageId;
}
public String getImagePath() {
return this.imagePath;
}
public void setImagePath(String imagePath) {
this.imagePath = imagePath;
}
public List<BodyPose> getBodyPoses() {
return this.bodyPoses;
}
public void setBodyPoses(List<BodyPose> bodyPoses) {
this.bodyPoses = bodyPoses;
}
}
@@ -0,0 +1,69 @@
package cn.cloudwalk.cwos.client.event.event;
import cn.cloudwalk.cwos.client.event.event.mode.BodyTrack;
public class BodyTrackEvent extends BaseEvent {
private long captureTime;
private String deviceName;
private String imageId;
private String imagePath;
private Location location;
private BodyTrack body;
private String trackId;
public long getCaptureTime() {
return this.captureTime;
}
public void setCaptureTime(long captureTime) {
this.captureTime = captureTime;
}
public String getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public String getImageId() {
return this.imageId;
}
public void setImageId(String imageId) {
this.imageId = imageId;
}
public String getImagePath() {
return this.imagePath;
}
public void setImagePath(String imagePath) {
this.imagePath = imagePath;
}
public Location getLocation() {
return this.location;
}
public void setLocation(Location location) {
this.location = location;
}
public BodyTrack getBody() {
return this.body;
}
public void setBody(BodyTrack body) {
this.body = body;
}
public String getTrackId() {
return this.trackId;
}
public void setTrackId(String trackId) {
this.trackId = trackId;
}
}
@@ -0,0 +1,34 @@
package cn.cloudwalk.cwos.client.event.event;
import cn.cloudwalk.cwos.client.event.event.mode.ClusterResultData;
import java.util.List;
public class ClusterResultEvent extends BaseEvent {
private List<ClusterResultData> data;
private String taskId;
private Short state;
public List<ClusterResultData> getData() {
return this.data;
}
public void setData(List<ClusterResultData> data) {
this.data = data;
}
public String getTaskId() {
return this.taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
public Short getState() {
return this.state;
}
public void setState(Short state) {
this.state = state;
}
}
@@ -0,0 +1,21 @@
package cn.cloudwalk.cwos.client.event.event;
public enum CommonTopic {
DEAD("dead"),
ALL("all");
private String topic;
CommonTopic(String topic) {
this.topic = topic;
}
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
}
}
@@ -0,0 +1,67 @@
package cn.cloudwalk.cwos.client.event.event;
public class ControlAlarmEvent extends BaseEvent {
private String deviceName;
private String captureImgPath;
private long captureTime;
private float qualityScore;
private String recogImgPath;
private String groupId;
private float similityScore;
public String getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public String getCaptureImgPath() {
return this.captureImgPath;
}
public void setCaptureImgPath(String captureImgPath) {
this.captureImgPath = captureImgPath;
}
public long getCaptureTime() {
return this.captureTime;
}
public void setCaptureTime(long captureTime) {
this.captureTime = captureTime;
}
public float getQualityScore() {
return this.qualityScore;
}
public void setQualityScore(float qualityScore) {
this.qualityScore = qualityScore;
}
public String getRecogImgPath() {
return this.recogImgPath;
}
public void setRecogImgPath(String recogImgPath) {
this.recogImgPath = recogImgPath;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public float getSimilityScore() {
return this.similityScore;
}
public void setSimilityScore(float similityScore) {
this.similityScore = similityScore;
}
}
@@ -0,0 +1,5 @@
package cn.cloudwalk.cwos.client.event.event;
public abstract class CustomEvent extends BaseEvent {
public abstract String getTopic();
}
@@ -0,0 +1,13 @@
package cn.cloudwalk.cwos.client.event.event;
public class DeviceDeleteEvent extends BaseEvent {
private Long changeTime;
public Long getChangeTime() {
return this.changeTime;
}
public void setChangeTime(Long changeTime) {
this.changeTime = changeTime;
}
}
@@ -0,0 +1,24 @@
package cn.cloudwalk.cwos.client.event.event;
import cn.cloudwalk.cwos.client.event.event.enums.StateChange;
public class DeviceStateChangeEvent extends BaseEvent {
private StateChange stateChange;
private Long changeTime;
public StateChange getStateChange() {
return this.stateChange;
}
public void setStateChange(StateChange stateChange) {
this.stateChange = stateChange;
}
public Long getChangeTime() {
return this.changeTime;
}
public void setChangeTime(Long changeTime) {
this.changeTime = changeTime;
}
}
@@ -0,0 +1,122 @@
package cn.cloudwalk.cwos.client.event.event;
import cn.cloudwalk.cwos.client.event.event.app.OpendoorFaceCaptureRecordEvent;
import cn.cloudwalk.cwos.client.event.event.mall.ChannelPreparationEvent;
import cn.cloudwalk.cwos.client.event.event.mall.PreStatsPernoAlarmPushEvent;
import cn.cloudwalk.cwos.client.event.event.mall.PreStatsPernoPushEvent;
import cn.cloudwalk.cwos.client.event.event.mall.PreparationDealDataEvent;
import cn.cloudwalk.cwos.client.event.event.resource.EnterpriseChangeEvent;
import cn.cloudwalk.cwos.client.event.event.structure.StructureCarCaptureEvent;
import cn.cloudwalk.cwos.client.event.event.structure.StructureNoCarCaptureEvent;
import cn.cloudwalk.cwos.client.event.event.structure.StructurePersonCaptureEvent;
import cn.cloudwalk.cwos.client.event.event.track.TrackRecordAloEvent;
import cn.cloudwalk.cwos.client.event.event.track.TrackRecordEvent;
public enum EventType {
BODY_CAPTURE("BODY_CAPTURE", new BodyCaptureEvent(), "BODY_CAPTURE_TOPIC"),
FACE_CAPTURE("FACE_CAPTURE", new FaceCaptureEvent(), "FACE_CAPTURE_TOPIC"),
FACE_FEATURE("FACE_FEATURE", new FaceFeatureEvent(), "FACE_FEATURE_TOPIC"),
PERSON_RECORD_UPLOAD("PERSON_RECORD_UPLOAD", new PersonRecordUploadEvent(), "PERSON_RECORD_UPLOAD_TOPIC"),
CONTROL_ALARM("CONTROL_ALARM", new ControlAlarmEvent(), "CONTROL_ALARM_TOPIC"),
FACE_TRACK("FACE_TRACK", new FaceTrackEvent(), "FACE_TRACK_TOPIC"),
BODY_TRACK("BODY_TRACK", new BodyTrackEvent(), "BODY_TRACK_TOPIC"),
PERSON_ARRIVAL("PERSON_ARRIVAL", new PersonArrivalEvent(), "PERSON_ARRIVAL_TOPIC"),
PERSON_LIBRARY("PERSON_LIBRARY", new PersonLibraryEvent(), "PERSON_LIBRARY_TOPIC"),
HEAT_AVG_STATS("HEAT_AVG_STATS", new HeatAvgStatsEvent(), "HEAT_AVG_STATS_TOPIC"),
FACE_RECOG_TRACK("FACE_RECOG_TRACK", new FaceRecogTrackEvent(), "FACE_RECOG_TRACK_TOPIC"),
PICTURE_RESULT("PICTURE_RESULT", new PictureResultEvent(), "PICTURE_RESULT_TOPIC"),
PANORAMA_UPLOAD("PANORAMA_UPLOAD", new PanoramaUploadEvent(), "PANORAMA_UPLOAD_TOPIC"),
ROI_DEVICE_DATA_UPLOAD("ROI_DEVICE_DATA_UPLOAD", new RoiDeviceDataUploadEvent(), "ROI_DEVICE_DATA_UPLOAD_TOPIC"),
ROI_DEVICE_REGISTER("ROI_DEVICE_REGISTER", new RoiDeviceRegisterEvent(), "ROI_DEVICE_REGISTER_TOPIC"),
ROI_CONF("ROI_CONF", new RoiConfEvent(), "ROI_CONF_TOPIC"),
ORG_PERSON_RECORD("ORG_PERSON_RECORD", new OrgPersonRecordEvent(), "ORG_PERSON_RECORD_TOPIC"),
BODY_KEY_POINTS("BODY_KEY_POINTS", new BodyKeyPointsEvent(), "BODY_KEY_POINTS_TOPIC"),
DEVICE_STATS_CHANGE("DEVICE_STATS_CHANGE", new DeviceStateChangeEvent(), "DEVICE_STATS_CHANGE_TOPIC"),
PERSON_CARD_COMPARE("PERSON_CARD_COMPARE", new PersonCardCompareEvent(), "PERSON_CARD_COMPARE_TOPIC"),
OPENDOOR_RECORD_UPLOAD("OPENDOOR_RECORD_UPLOAD", new OpenDoorRecordEvent(), "OPENDOOR_RECORD_UPLOAD_TOPIC"),
DEVICE_DELETE("DEVICE_DELETE", new DeviceDeleteEvent(), "DEVICE_DELETE_TOPIC"),
EXTRACT_FRAME("EXTRACT_FRAME", new ExtractFrameEvent(), "EXTRACT_FRAME_TOPIC"),
FILE_NOTICE("FILE_NOTICE", new FileNoticeEvent(), "FILE_NOTICE_TOPIC"),
ANTIEPIDEMIC_ALARM("ANTIEPIDEMIC_ALARM", new AntiepidemicAlarmEvent(), "ANTIEPIDEMIC_ALARM_TOPIC"),
STRUCTURE_PERSON_CAPTURE("STRUCTURE_PERSON_CAPTURE", (BaseEvent) new StructurePersonCaptureEvent(),
"STRUCTURE_PERSON_TOPIC"),
STRUCTURE_CAR_CAPTURE("STRUCTURE_CAR_CAPTURE", (BaseEvent) new StructureCarCaptureEvent(), "STRUCTURE_CAR_TOPIC"),
STRUCTURE_NO_CAR_CAPTURE("STRUCTURE_NO_CAR_CAPTURE", (BaseEvent) new StructureNoCarCaptureEvent(),
"STRUCTURE_NO_CAR_TOPIC"),
OPENDOOR_FACE_CAPTURE_RECORD("OPENDOOR_FACE_CAPTURE_RECORD", (BaseEvent) new OpendoorFaceCaptureRecordEvent(),
"OPENDOOR_FACE_CAPTURE_RECORD_TOPIC"),
PRE_STATS_PERNO_PUSH("PRE_STATS_PERNO_PUSH", (BaseEvent) new PreStatsPernoPushEvent(),
"PRE_STATS_PERNO_PUSH_TOPIC"),
PRE_STATS_PERNO_ALARM_PUSH("PRE_STATS_PERNO_ALARM_PUSH", (BaseEvent) new PreStatsPernoAlarmPushEvent(),
"PRE_STATS_PERNO_ALARM_PUSH"),
TRACK_RECORD_ALO("TRACK_RECORD_ALO", (BaseEvent) new TrackRecordAloEvent(), "TRACK_RECORD_ALO"),
TRACK_RECORD("TRACK_RECORD", (BaseEvent) new TrackRecordEvent(), "TRACK_RECORD"),
ENTERPRISE_CHANGE("ENTERPRISE_CHANGE", (BaseEvent) new EnterpriseChangeEvent(), "ENTERPRISE_CHANGE"),
HEAD_SHOULDER_DY("HEAD_SHOULDER_DY", new HeadShoulderDyEvent(), "HEAD_SHOULDER_DY"),
CLUSTER_RESULT("CLUSTER_RESULT", new ClusterResultEvent(), "CLUSTER_RESULT"),
CHANNEL_PREPARATION("CHANNEL_PREPARATION", (BaseEvent) new ChannelPreparationEvent(), "CHANNEL_PREPARATION"),
PREPARATION_DEAL_DATA("PREPARATION_DEAL_DATA", (BaseEvent) new PreparationDealDataEvent(), "PREPARATION_DEAL_DATA"),
MALL_OCR_ASYN_RECOG_DATA("MALL_OCR_ASYN_RECOG_DATA", new OcrAsynRecogDataEvent(), "MALL_OCR_ASYN_RECOG_DATA");
private String code;
private BaseEvent eventClass;
private String topic;
EventType(String code, BaseEvent even, String topic) {
this.code = code;
this.eventClass = even;
this.topic = topic;
}
public String getCode() {
return this.code;
}
public BaseEvent getEventClass() {
return this.eventClass;
}
public String getTopic() {
return this.topic;
}
}
@@ -0,0 +1,94 @@
package cn.cloudwalk.cwos.client.event.event;
public class ExtractFrameEvent extends BaseEvent {
private String corpId;
private String orgId;
private String taskId;
private String taskName;
private String img;
private String imgUrl;
private Long extractTime;
private String ext1;
private String ext2;
private String ext3;
public String getCorpId() {
return this.corpId;
}
public void setCorpId(String corpId) {
this.corpId = corpId;
}
public String getOrgId() {
return this.orgId;
}
public void setOrgId(String orgId) {
this.orgId = orgId;
}
public String getTaskId() {
return this.taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
public String getTaskName() {
return this.taskName;
}
public void setTaskName(String taskName) {
this.taskName = taskName;
}
public String getImg() {
return this.img;
}
public void setImg(String img) {
this.img = img;
}
public String getImgUrl() {
return this.imgUrl;
}
public void setImgUrl(String imgUrl) {
this.imgUrl = imgUrl;
}
public Long getExtractTime() {
return this.extractTime;
}
public void setExtractTime(Long extractTime) {
this.extractTime = extractTime;
}
public String getExt1() {
return this.ext1;
}
public void setExt1(String ext1) {
this.ext1 = ext1;
}
public String getExt2() {
return this.ext2;
}
public void setExt2(String ext2) {
this.ext2 = ext2;
}
public String getExt3() {
return this.ext3;
}
public void setExt3(String ext3) {
this.ext3 = ext3;
}
}
@@ -0,0 +1,71 @@
package cn.cloudwalk.cwos.client.event.event;
import cn.cloudwalk.cwos.client.event.event.mode.FaceCapture;
import cn.cloudwalk.cwos.client.event.event.mode.Panorama;
import java.util.List;
public class FaceCaptureEvent extends BaseEvent {
private String snapType;
private String imagePath;
private String subDeviceId;
private int timeConsuming;
private int faceNum;
private Panorama panorama;
private List<FaceCapture> face;
public String getSnapType() {
return this.snapType;
}
public void setSnapType(String snapType) {
this.snapType = snapType;
}
public String getImagePath() {
return this.imagePath;
}
public void setImagePath(String imagePath) {
this.imagePath = imagePath;
}
public String getSubDeviceId() {
return this.subDeviceId;
}
public void setSubDeviceId(String subDeviceId) {
this.subDeviceId = subDeviceId;
}
public int getTimeConsuming() {
return this.timeConsuming;
}
public void setTimeConsuming(int timeConsuming) {
this.timeConsuming = timeConsuming;
}
public int getFaceNum() {
return this.faceNum;
}
public void setFaceNum(int faceNum) {
this.faceNum = faceNum;
}
public Panorama getPanorama() {
return this.panorama;
}
public void setPanorama(Panorama panorama) {
this.panorama = panorama;
}
public List<FaceCapture> getFace() {
return this.face;
}
public void setFace(List<FaceCapture> face) {
this.face = face;
}
}
@@ -0,0 +1,44 @@
package cn.cloudwalk.cwos.client.event.event;
import cn.cloudwalk.cwos.client.event.event.mode.FaceFeature;
import cn.cloudwalk.cwos.client.event.event.mode.Panorama;
import java.util.List;
public class FaceFeatureEvent extends BaseEvent {
private String subDeviceId;
private int timeConsuming;
private Panorama panorama;
private List<FaceFeature> face;
public String getSubDeviceId() {
return this.subDeviceId;
}
public void setSubDeviceId(String subDeviceId) {
this.subDeviceId = subDeviceId;
}
public int getTimeConsuming() {
return this.timeConsuming;
}
public void setTimeConsuming(int timeConsuming) {
this.timeConsuming = timeConsuming;
}
public Panorama getPanorama() {
return this.panorama;
}
public void setPanorama(Panorama panorama) {
this.panorama = panorama;
}
public List<FaceFeature> getFace() {
return this.face;
}
public void setFace(List<FaceFeature> face) {
this.face = face;
}
}
@@ -0,0 +1,80 @@
package cn.cloudwalk.cwos.client.event.event;
import cn.cloudwalk.cwos.client.event.event.mode.FaceLibrary;
import cn.cloudwalk.cwos.client.event.event.mode.FaceTrack;
import java.util.List;
public class FaceRecogTrackEvent extends BaseEvent {
private String deviceName;
private long captureTime;
private String imageId;
private String imagePath;
private FaceTrack face;
private List<FaceLibrary> similarFace;
private Location location;
private String trackId;
public String getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public long getCaptureTime() {
return this.captureTime;
}
public void setCaptureTime(long captureTime) {
this.captureTime = captureTime;
}
public String getImageId() {
return this.imageId;
}
public void setImageId(String imageId) {
this.imageId = imageId;
}
public String getImagePath() {
return this.imagePath;
}
public void setImagePath(String imagePath) {
this.imagePath = imagePath;
}
public FaceTrack getFace() {
return this.face;
}
public void setFace(FaceTrack face) {
this.face = face;
}
public List<FaceLibrary> getSimilarFace() {
return this.similarFace;
}
public void setSimilarFace(List<FaceLibrary> similarFace) {
this.similarFace = similarFace;
}
public Location getLocation() {
return this.location;
}
public void setLocation(Location location) {
this.location = location;
}
public String getTrackId() {
return this.trackId;
}
public void setTrackId(String trackId) {
this.trackId = trackId;
}
}
@@ -0,0 +1,69 @@
package cn.cloudwalk.cwos.client.event.event;
import cn.cloudwalk.cwos.client.event.event.mode.FaceTrack;
public class FaceTrackEvent extends BaseEvent {
private long captureTime;
private String deviceName;
private String imageId;
private String imagePath;
private Location location;
private FaceTrack face;
private String trackId;
public long getCaptureTime() {
return this.captureTime;
}
public void setCaptureTime(long captureTime) {
this.captureTime = captureTime;
}
public String getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public String getImageId() {
return this.imageId;
}
public void setImageId(String imageId) {
this.imageId = imageId;
}
public String getImagePath() {
return this.imagePath;
}
public void setImagePath(String imagePath) {
this.imagePath = imagePath;
}
public Location getLocation() {
return this.location;
}
public void setLocation(Location location) {
this.location = location;
}
public FaceTrack getFace() {
return this.face;
}
public void setFace(FaceTrack face) {
this.face = face;
}
public String getTrackId() {
return this.trackId;
}
public void setTrackId(String trackId) {
this.trackId = trackId;
}
}
@@ -0,0 +1,31 @@
package cn.cloudwalk.cwos.client.event.event;
public class FileNoticeEvent extends BaseEvent {
private String fileId;
private String filePath;
private String noticeType;
public String getFileId() {
return this.fileId;
}
public void setFileId(String fileId) {
this.fileId = fileId;
}
public String getFilePath() {
return this.filePath;
}
public void setFilePath(String filePath) {
this.filePath = filePath;
}
public String getNoticeType() {
return this.noticeType;
}
public void setNoticeType(String noticeType) {
this.noticeType = noticeType;
}
}
@@ -0,0 +1,4 @@
package cn.cloudwalk.cwos.client.event.event;
public class HeadShoulderDyEvent extends RoiDeviceDataUploadEvent {
}
@@ -0,0 +1,22 @@
package cn.cloudwalk.cwos.client.event.event;
public class HeadshoulderEvent extends BaseEvent {
private int headNum;
private Location location;
public int getHeadNum() {
return this.headNum;
}
public void setHeadNum(int headNum) {
this.headNum = headNum;
}
public Location getLocation() {
return this.location;
}
public void setLocation(Location location) {
this.location = location;
}
}
@@ -0,0 +1,103 @@
package cn.cloudwalk.cwos.client.event.event;
public class HeatAvgStatsEvent extends BaseEvent {
private String captureId;
private String roiId;
private String storeId;
private String areaId;
private Integer headCount;
private Integer headTimes;
private Integer headMax;
private Integer headMin;
private Integer curHeadCount;
private Long statsTime;
private String areaPersonPoints;
public String getCaptureId() {
return this.captureId;
}
public void setCaptureId(String captureId) {
this.captureId = captureId;
}
public String getRoiId() {
return this.roiId;
}
public void setRoiId(String roiId) {
this.roiId = roiId;
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
}
public String getAreaId() {
return this.areaId;
}
public void setAreaId(String areaId) {
this.areaId = areaId;
}
public Integer getHeadCount() {
return this.headCount;
}
public void setHeadCount(Integer headCount) {
this.headCount = headCount;
}
public Integer getHeadTimes() {
return this.headTimes;
}
public void setHeadTimes(Integer headTimes) {
this.headTimes = headTimes;
}
public Integer getHeadMax() {
return this.headMax;
}
public void setHeadMax(Integer headMax) {
this.headMax = headMax;
}
public Integer getHeadMin() {
return this.headMin;
}
public void setHeadMin(Integer headMin) {
this.headMin = headMin;
}
public Integer getCurHeadCount() {
return this.curHeadCount;
}
public void setCurHeadCount(Integer curHeadCount) {
this.curHeadCount = curHeadCount;
}
public Long getStatsTime() {
return this.statsTime;
}
public void setStatsTime(Long statsTime) {
this.statsTime = statsTime;
}
public String getAreaPersonPoints() {
return this.areaPersonPoints;
}
public void setAreaPersonPoints(String areaPersonPoints) {
this.areaPersonPoints = areaPersonPoints;
}
}
@@ -0,0 +1,76 @@
package cn.cloudwalk.cwos.client.event.event;
public class Location {
private int x;
private int y;
private int height;
private int width;
private Integer faceX;
private Integer faceY;
private Integer faceWidth;
private Integer faceHeight;
public int getX() {
return this.x;
}
public void setX(int x) {
this.x = x;
}
public int getY() {
return this.y;
}
public void setY(int y) {
this.y = y;
}
public int getHeight() {
return this.height;
}
public void setHeight(int height) {
this.height = height;
}
public int getWidth() {
return this.width;
}
public void setWidth(int width) {
this.width = width;
}
public Integer getFaceX() {
return this.faceX;
}
public void setFaceX(Integer faceX) {
this.faceX = faceX;
}
public Integer getFaceY() {
return this.faceY;
}
public void setFaceY(Integer faceY) {
this.faceY = faceY;
}
public Integer getFaceWidth() {
return this.faceWidth;
}
public void setFaceWidth(Integer faceWidth) {
this.faceWidth = faceWidth;
}
public Integer getFaceHeight() {
return this.faceHeight;
}
public void setFaceHeight(Integer faceHeight) {
this.faceHeight = faceHeight;
}
}
@@ -0,0 +1,67 @@
package cn.cloudwalk.cwos.client.event.event;
public class OcrAsynRecogDataEvent extends BaseEvent {
private Long timestamp;
private String storeId;
private String mallName;
private String imgUrl;
private String bizId;
private String callBackUrl;
private String jsonData;
public Long getTimestamp() {
return this.timestamp;
}
public void setTimestamp(Long timestamp) {
this.timestamp = timestamp;
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
}
public String getMallName() {
return this.mallName;
}
public void setMallName(String mallName) {
this.mallName = mallName;
}
public String getImgUrl() {
return this.imgUrl;
}
public void setImgUrl(String imgUrl) {
this.imgUrl = imgUrl;
}
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
}
public String getCallBackUrl() {
return this.callBackUrl;
}
public void setCallBackUrl(String callBackUrl) {
this.callBackUrl = callBackUrl;
}
public String getJsonData() {
return this.jsonData;
}
public void setJsonData(String jsonData) {
this.jsonData = jsonData;
}
}
@@ -0,0 +1,76 @@
package cn.cloudwalk.cwos.client.event.event;
public class OpenDoorRecordEvent extends BaseEvent {
private String subDeviceId;
private String openDoorType;
private String recognitionNo;
private Long recognitionTime;
private String recognitionFaceId;
private String faceImagePath;
private String panoramaImagePath;
private String recordResult;
public String getRecordResult() {
return this.recordResult;
}
public void setRecordResult(String recordResult) {
this.recordResult = recordResult;
}
public String getSubDeviceId() {
return this.subDeviceId;
}
public void setSubDeviceId(String subDeviceId) {
this.subDeviceId = subDeviceId;
}
public String getOpenDoorType() {
return this.openDoorType;
}
public void setOpenDoorType(String openDoorType) {
this.openDoorType = openDoorType;
}
public String getRecognitionNo() {
return this.recognitionNo;
}
public void setRecognitionNo(String recognitionNo) {
this.recognitionNo = recognitionNo;
}
public Long getRecognitionTime() {
return this.recognitionTime;
}
public void setRecognitionTime(Long recognitionTime) {
this.recognitionTime = recognitionTime;
}
public String getRecognitionFaceId() {
return this.recognitionFaceId;
}
public void setRecognitionFaceId(String recognitionFaceId) {
this.recognitionFaceId = recognitionFaceId;
}
public String getFaceImagePath() {
return this.faceImagePath;
}
public void setFaceImagePath(String faceImagePath) {
this.faceImagePath = faceImagePath;
}
public String getPanoramaImagePath() {
return this.panoramaImagePath;
}
public void setPanoramaImagePath(String panoramaImagePath) {
this.panoramaImagePath = panoramaImagePath;
}
}
@@ -0,0 +1,103 @@
package cn.cloudwalk.cwos.client.event.event;
public class OrgPersonRecordEvent extends BaseEvent {
private String personId;
private String personName;
private Long orgId;
private Long signTime;
private Integer tumoverType;
private String orgName;
private String deviceCode;
private String deviceName;
private String faceUrl;
private String spotImgPath;
private String panoramaImageUrl;
public String getPersonId() {
return this.personId;
}
public void setPersonId(String personId) {
this.personId = personId;
}
public String getPersonName() {
return this.personName;
}
public void setPersonName(String personName) {
this.personName = personName;
}
public Long getOrgId() {
return this.orgId;
}
public void setOrgId(Long orgId) {
this.orgId = orgId;
}
public Long getSignTime() {
return this.signTime;
}
public void setSignTime(Long signTime) {
this.signTime = signTime;
}
public Integer getTumoverType() {
return this.tumoverType;
}
public void setTumoverType(Integer tumoverType) {
this.tumoverType = tumoverType;
}
public String getOrgName() {
return this.orgName;
}
public void setOrgName(String orgName) {
this.orgName = orgName;
}
public String getDeviceCode() {
return this.deviceCode;
}
public void setDeviceCode(String deviceCode) {
this.deviceCode = deviceCode;
}
public String getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public String getFaceUrl() {
return this.faceUrl;
}
public void setFaceUrl(String faceUrl) {
this.faceUrl = faceUrl;
}
public String getSpotImgPath() {
return this.spotImgPath;
}
public void setSpotImgPath(String spotImgPath) {
this.spotImgPath = spotImgPath;
}
public String getPanoramaImageUrl() {
return this.panoramaImageUrl;
}
public void setPanoramaImageUrl(String panoramaImageUrl) {
this.panoramaImageUrl = panoramaImageUrl;
}
}
@@ -0,0 +1,25 @@
package cn.cloudwalk.cwos.client.event.event;
import cn.cloudwalk.cwos.client.event.event.mode.PanoramaDeviceData;
import java.util.List;
public class PanoramaUploadEvent extends BaseEvent {
private String deviceId;
private List<PanoramaDeviceData> deviceData;
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public List<PanoramaDeviceData> getDeviceData() {
return this.deviceData;
}
public void setDeviceData(List<PanoramaDeviceData> deviceData) {
this.deviceData = deviceData;
}
}
@@ -0,0 +1,220 @@
package cn.cloudwalk.cwos.client.event.event;
public class PersonArrivalEvent extends BaseEvent {
private String deviceGroupId;
private Long captureTime;
private String captureId;
private String captureUrl;
private String captureFeature;
private Integer gender;
private Integer age;
private Double faceQuality;
private String recgId;
private String groupId;
private Integer groupType;
private String personId;
private String platPersonId;
private String faceId;
private String sex;
private Integer birthDay;
private String storeId;
private String districtCodePath;
private Integer threshold;
private Integer score;
private String faceUrl;
private Integer result;
private Integer checkType;
private String storeName;
public String getDeviceGroupId() {
return this.deviceGroupId;
}
public void setDeviceGroupId(String deviceGroupId) {
this.deviceGroupId = deviceGroupId;
}
public Long getCaptureTime() {
return this.captureTime;
}
public void setCaptureTime(Long captureTime) {
this.captureTime = captureTime;
}
public String getCaptureId() {
return this.captureId;
}
public void setCaptureId(String captureId) {
this.captureId = captureId;
}
public String getCaptureUrl() {
return this.captureUrl;
}
public void setCaptureUrl(String captureUrl) {
this.captureUrl = captureUrl;
}
public String getCaptureFeature() {
return this.captureFeature;
}
public void setCaptureFeature(String captureFeature) {
this.captureFeature = captureFeature;
}
public Integer getGender() {
return this.gender;
}
public void setGender(Integer gender) {
this.gender = gender;
}
public Integer getAge() {
return this.age;
}
public void setAge(Integer age) {
this.age = age;
}
public Double getFaceQuality() {
return this.faceQuality;
}
public void setFaceQuality(Double faceQuality) {
this.faceQuality = faceQuality;
}
public String getRecgId() {
return this.recgId;
}
public void setRecgId(String recgId) {
this.recgId = recgId;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public Integer getGroupType() {
return this.groupType;
}
public void setGroupType(Integer groupType) {
this.groupType = groupType;
}
public String getPersonId() {
return this.personId;
}
public void setPersonId(String personId) {
this.personId = personId;
}
public String getPlatPersonId() {
return this.platPersonId;
}
public void setPlatPersonId(String platPersonId) {
this.platPersonId = platPersonId;
}
public String getFaceId() {
return this.faceId;
}
public void setFaceId(String faceId) {
this.faceId = faceId;
}
public String getSex() {
return this.sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public Integer getBirthDay() {
return this.birthDay;
}
public void setBirthDay(Integer birthDay) {
this.birthDay = birthDay;
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
}
public String getDistrictCodePath() {
return this.districtCodePath;
}
public void setDistrictCodePath(String districtCodePath) {
this.districtCodePath = districtCodePath;
}
public Integer getThreshold() {
return this.threshold;
}
public void setThreshold(Integer threshold) {
this.threshold = threshold;
}
public Integer getScore() {
return this.score;
}
public void setScore(Integer score) {
this.score = score;
}
public String getFaceUrl() {
return this.faceUrl;
}
public void setFaceUrl(String faceUrl) {
this.faceUrl = faceUrl;
}
public Integer getResult() {
return this.result;
}
public void setResult(Integer result) {
this.result = result;
}
public Integer getCheckType() {
return this.checkType;
}
public void setCheckType(Integer checkType) {
this.checkType = checkType;
}
public String getStoreName() {
return this.storeName;
}
public void setStoreName(String storeName) {
this.storeName = storeName;
}
}
@@ -0,0 +1,114 @@
package cn.cloudwalk.cwos.client.event.event;
import cn.cloudwalk.cwos.client.event.event.mode.CardData;
public class PersonCardCompareEvent extends BaseEvent {
private String subDeviceId;
private String spotImagePath;
private String panoramaImagePath;
private String tempImagePath;
private CardData cardData;
private float threshold;
private float score;
private Float tempScore;
private Float maskScore;
private Integer compareResult;
private Integer timeConsuming;
private Long compareTime;
public String getSubDeviceId() {
return this.subDeviceId;
}
public void setSubDeviceId(String subDeviceId) {
this.subDeviceId = subDeviceId;
}
public String getSpotImagePath() {
return this.spotImagePath;
}
public void setSpotImagePath(String spotImagePath) {
this.spotImagePath = spotImagePath;
}
public String getPanoramaImagePath() {
return this.panoramaImagePath;
}
public void setPanoramaImagePath(String panoramaImagePath) {
this.panoramaImagePath = panoramaImagePath;
}
public CardData getCardData() {
return this.cardData;
}
public void setCardData(CardData cardData) {
this.cardData = cardData;
}
public float getThreshold() {
return this.threshold;
}
public void setThreshold(float threshold) {
this.threshold = threshold;
}
public float getScore() {
return this.score;
}
public void setScore(float score) {
this.score = score;
}
public Integer getCompareResult() {
return this.compareResult;
}
public void setCompareResult(Integer compareResult) {
this.compareResult = compareResult;
}
public Integer getTimeConsuming() {
return this.timeConsuming;
}
public void setTimeConsuming(Integer timeConsuming) {
this.timeConsuming = timeConsuming;
}
public Long getCompareTime() {
return this.compareTime;
}
public void setCompareTime(Long compareTime) {
this.compareTime = compareTime;
}
public Float getTempScore() {
return this.tempScore;
}
public void setTempScore(Float tempScore) {
this.tempScore = tempScore;
}
public Float getMaskScore() {
return this.maskScore;
}
public void setMaskScore(Float maskScore) {
this.maskScore = maskScore;
}
public String getTempImagePath() {
return this.tempImagePath;
}
public void setTempImagePath(String tempImagePath) {
this.tempImagePath = tempImagePath;
}
}
@@ -0,0 +1,97 @@
package cn.cloudwalk.cwos.client.event.event;
import cn.cloudwalk.cwos.client.event.event.mode.FaceLibrary;
import java.util.List;
public class PersonLibraryEvent extends BaseEvent {
private String subDeviceId;
private String captureId;
private Long captureTime;
private String captureUrl;
private String panoramaImageUrl;
private String captureFeature;
private Integer gender;
private Integer age;
private Double faceQuality;
private List<FaceLibrary> recogFaceList;
public String getSubDeviceId() {
return this.subDeviceId;
}
public void setSubDeviceId(String subDeviceId) {
this.subDeviceId = subDeviceId;
}
public String getCaptureId() {
return this.captureId;
}
public void setCaptureId(String captureId) {
this.captureId = captureId;
}
public Long getCaptureTime() {
return this.captureTime;
}
public void setCaptureTime(Long captureTime) {
this.captureTime = captureTime;
}
public String getCaptureUrl() {
return this.captureUrl;
}
public void setCaptureUrl(String captureUrl) {
this.captureUrl = captureUrl;
}
public String getPanoramaImageUrl() {
return this.panoramaImageUrl;
}
public void setPanoramaImageUrl(String panoramaImageUrl) {
this.panoramaImageUrl = panoramaImageUrl;
}
public String getCaptureFeature() {
return this.captureFeature;
}
public void setCaptureFeature(String captureFeature) {
this.captureFeature = captureFeature;
}
public Integer getGender() {
return this.gender;
}
public void setGender(Integer gender) {
this.gender = gender;
}
public Integer getAge() {
return this.age;
}
public void setAge(Integer age) {
this.age = age;
}
public Double getFaceQuality() {
return this.faceQuality;
}
public void setFaceQuality(Double faceQuality) {
this.faceQuality = faceQuality;
}
public List<FaceLibrary> getRecogFaceList() {
return this.recogFaceList;
}
public void setRecogFaceList(List<FaceLibrary> recogFaceList) {
this.recogFaceList = recogFaceList;
}
}
@@ -0,0 +1,62 @@
package cn.cloudwalk.cwos.client.event.event;
import cn.cloudwalk.cwos.client.event.event.mode.Face;
import cn.cloudwalk.cwos.client.event.event.mode.Panorama;
import java.util.List;
public class PersonRecordUploadEvent extends BaseEvent {
private String source;
private String subDeviceId;
private float threshold;
private String videoId;
private Panorama panoramaData;
private List<Face> faces;
public String getSource() {
return this.source;
}
public void setSource(String source) {
this.source = source;
}
public String getSubDeviceId() {
return this.subDeviceId;
}
public void setSubDeviceId(String subDeviceId) {
this.subDeviceId = subDeviceId;
}
public float getThreshold() {
return this.threshold;
}
public void setThreshold(float threshold) {
this.threshold = threshold;
}
public String getVideoId() {
return this.videoId;
}
public void setVideoId(String videoId) {
this.videoId = videoId;
}
public Panorama getPanoramaData() {
return this.panoramaData;
}
public void setPanoramaData(Panorama panoramaData) {
this.panoramaData = panoramaData;
}
public List<Face> getFaces() {
return this.faces;
}
public void setFaces(List<Face> faces) {
this.faces = faces;
}
}
@@ -0,0 +1,25 @@
package cn.cloudwalk.cwos.client.event.event;
import cn.cloudwalk.cwos.client.event.event.mode.ImageData;
import java.util.List;
public class PictureResultEvent extends BaseEvent {
private String subDeviceId;
private List<ImageData> imageData;
public String getSubDeviceId() {
return this.subDeviceId;
}
public void setSubDeviceId(String subDeviceId) {
this.subDeviceId = subDeviceId;
}
public List<ImageData> getImageData() {
return this.imageData;
}
public void setImageData(List<ImageData> imageData) {
this.imageData = imageData;
}
}
@@ -0,0 +1,16 @@
package cn.cloudwalk.cwos.client.event.event;
import cn.cloudwalk.cwos.client.event.event.mode.RoiDeviceConfData;
import java.util.List;
public class RoiConfEvent extends BaseEvent {
private List<RoiDeviceConfData> deviceData;
public List<RoiDeviceConfData> getDeviceData() {
return this.deviceData;
}
public void setDeviceData(List<RoiDeviceConfData> deviceData) {
this.deviceData = deviceData;
}
}
@@ -0,0 +1,80 @@
package cn.cloudwalk.cwos.client.event.event;
import cn.cloudwalk.cwos.client.event.event.mode.Panorama;
import cn.cloudwalk.cwos.client.event.event.mode.RoiDeviceData;
import java.util.List;
public class RoiDeviceDataUploadEvent extends BaseEvent {
private Long timestamp;
private String deviceId;
private List<RoiDeviceData> deviceData;
private String headMode;
private Long headCount;
private Panorama panorama;
private Integer panoramicMode;
private String subDeviceId;
public String getSubDeviceId() {
return this.subDeviceId;
}
public void setSubDeviceId(String subDeviceId) {
this.subDeviceId = subDeviceId;
}
public Long getTimestamp() {
return this.timestamp;
}
public void setTimestamp(Long timestamp) {
this.timestamp = timestamp;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public List<RoiDeviceData> getDeviceData() {
return this.deviceData;
}
public void setDeviceData(List<RoiDeviceData> deviceData) {
this.deviceData = deviceData;
}
public String getHeadMode() {
return this.headMode;
}
public void setHeadMode(String headMode) {
this.headMode = headMode;
}
public Long getHeadCount() {
return this.headCount;
}
public void setHeadCount(Long headCount) {
this.headCount = headCount;
}
public Panorama getPanorama() {
return this.panorama;
}
public void setPanorama(Panorama panorama) {
this.panorama = panorama;
}
public Integer getPanoramicMode() {
return this.panoramicMode;
}
public void setPanoramicMode(Integer panoramicMode) {
this.panoramicMode = panoramicMode;
}
}
@@ -0,0 +1,34 @@
package cn.cloudwalk.cwos.client.event.event;
import cn.cloudwalk.cwos.client.event.event.mode.RoiDeviceRegisterData;
import java.util.List;
public class RoiDeviceRegisterEvent extends BaseEvent {
private String deviceId;
private Integer count;
private List<RoiDeviceRegisterData> deviceData;
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public Integer getCount() {
return this.count;
}
public void setCount(Integer count) {
this.count = count;
}
public List<RoiDeviceRegisterData> getDeviceData() {
return this.deviceData;
}
public void setDeviceData(List<RoiDeviceRegisterData> deviceData) {
this.deviceData = deviceData;
}
}
@@ -0,0 +1,141 @@
package cn.cloudwalk.cwos.client.event.event.app;
import cn.cloudwalk.cwos.client.event.event.BaseEvent;
public class OpendoorFaceCaptureRecordEvent extends BaseEvent {
private String subDeviceId;
private String appServiceCode;
private String openDoorType;
private String recognitionNo;
private Long recognitionTime;
private String faceImagePath;
private String panoramaImagePath;
private float threshold;
private String videoId;
private String faceId;
private Float score;
private Float qualityScore;
private Float tempScore;
private Float maskScore;
private String groupId;
public String getSubDeviceId() {
return this.subDeviceId;
}
public void setSubDeviceId(String subDeviceId) {
this.subDeviceId = subDeviceId;
}
public String getAppServiceCode() {
return this.appServiceCode;
}
public void setAppServiceCode(String appServiceCode) {
this.appServiceCode = appServiceCode;
}
public String getOpenDoorType() {
return this.openDoorType;
}
public void setOpenDoorType(String openDoorType) {
this.openDoorType = openDoorType;
}
public String getRecognitionNo() {
return this.recognitionNo;
}
public void setRecognitionNo(String recognitionNo) {
this.recognitionNo = recognitionNo;
}
public Long getRecognitionTime() {
return this.recognitionTime;
}
public void setRecognitionTime(Long recognitionTime) {
this.recognitionTime = recognitionTime;
}
public String getFaceImagePath() {
return this.faceImagePath;
}
public void setFaceImagePath(String faceImagePath) {
this.faceImagePath = faceImagePath;
}
public String getPanoramaImagePath() {
return this.panoramaImagePath;
}
public void setPanoramaImagePath(String panoramaImagePath) {
this.panoramaImagePath = panoramaImagePath;
}
public float getThreshold() {
return this.threshold;
}
public void setThreshold(float threshold) {
this.threshold = threshold;
}
public String getVideoId() {
return this.videoId;
}
public void setVideoId(String videoId) {
this.videoId = videoId;
}
public String getFaceId() {
return this.faceId;
}
public void setFaceId(String faceId) {
this.faceId = faceId;
}
public Float getScore() {
return this.score;
}
public void setScore(Float score) {
this.score = score;
}
public Float getQualityScore() {
return this.qualityScore;
}
public void setQualityScore(Float qualityScore) {
this.qualityScore = qualityScore;
}
public Float getTempScore() {
return this.tempScore;
}
public void setTempScore(Float tempScore) {
this.tempScore = tempScore;
}
public Float getMaskScore() {
return this.maskScore;
}
public void setMaskScore(Float maskScore) {
this.maskScore = maskScore;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
}
@@ -0,0 +1,44 @@
package cn.cloudwalk.cwos.client.event.event.enums;
public enum OpenDoorTypeEnum {
FACE("FACE"),
PASSWORD("PASSWORD"),
GUARD_CARD("GUARD_CARD"),
ID_CARD("ID_CARD"),
APP("APP"),
FACE_GUARD_CARD("FACE_GUARD_CARD"),
INTERCOM("INTERCOM");
private String type;
OpenDoorTypeEnum(String type) {
this.type = type;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public static OpenDoorTypeEnum getType(String type) {
OpenDoorTypeEnum[] var1 = values();
int var2 = var1.length;
for (int var3 = 0; var3 < var2; var3++) {
OpenDoorTypeEnum its = var1[var3];
if (its.type == type) {
return its;
}
}
return null;
}
}
@@ -0,0 +1,5 @@
package cn.cloudwalk.cwos.client.event.event.enums;
public enum StateChange {
ONLINE, OFFLINE;
}
@@ -0,0 +1,87 @@
package cn.cloudwalk.cwos.client.event.event.mall;
import cn.cloudwalk.cwos.client.event.event.BaseEvent;
public class ChannelPreparationEvent extends BaseEvent {
private String channelId;
private String channelName;
private String customerName;
private String customerPhone;
private String preparationName;
private String preparationPhone;
private String preparationIdentity;
private Long preparationTime;
private String storeId;
public String getChannelId() {
return this.channelId;
}
public void setChannelId(String channelId) {
this.channelId = channelId;
}
public String getChannelName() {
return this.channelName;
}
public void setChannelName(String channelName) {
this.channelName = channelName;
}
public String getCustomerName() {
return this.customerName;
}
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
public String getCustomerPhone() {
return this.customerPhone;
}
public void setCustomerPhone(String customerPhone) {
this.customerPhone = customerPhone;
}
public String getPreparationName() {
return this.preparationName;
}
public void setPreparationName(String preparationName) {
this.preparationName = preparationName;
}
public String getPreparationPhone() {
return this.preparationPhone;
}
public void setPreparationPhone(String preparationPhone) {
this.preparationPhone = preparationPhone;
}
public String getPreparationIdentity() {
return this.preparationIdentity;
}
public void setPreparationIdentity(String preparationIdentity) {
this.preparationIdentity = preparationIdentity;
}
public Long getPreparationTime() {
return this.preparationTime;
}
public void setPreparationTime(Long preparationTime) {
this.preparationTime = preparationTime;
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
}
}
@@ -0,0 +1,31 @@
package cn.cloudwalk.cwos.client.event.event.mall;
public class Customer {
private String customerName;
private String customerPhone;
private String customerIdcard;
public String getCustomerName() {
return this.customerName;
}
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
public String getCustomerPhone() {
return this.customerPhone;
}
public void setCustomerPhone(String customerPhone) {
this.customerPhone = customerPhone;
}
public String getCustomerIdcard() {
return this.customerIdcard;
}
public void setCustomerIdcard(String customerIdcard) {
this.customerIdcard = customerIdcard;
}
}
@@ -0,0 +1,96 @@
package cn.cloudwalk.cwos.client.event.event.mall;
import cn.cloudwalk.cwos.client.event.event.BaseEvent;
public class PreStatsPernoAlarmPushEvent extends BaseEvent {
private String userId;
private String alarmStragetyId;
private int alarmStragetyType;
private int alarmType;
private int alarmSetValue;
private int alarmValue;
private long alarmTime;
private String storeId;
private String custId;
private String applicationId;
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getAlarmStragetyId() {
return this.alarmStragetyId;
}
public void setAlarmStragetyId(String alarmStragetyId) {
this.alarmStragetyId = alarmStragetyId;
}
public int getAlarmStragetyType() {
return this.alarmStragetyType;
}
public void setAlarmStragetyType(int alarmStragetyType) {
this.alarmStragetyType = alarmStragetyType;
}
public int getAlarmType() {
return this.alarmType;
}
public void setAlarmType(int alarmType) {
this.alarmType = alarmType;
}
public int getAlarmSetValue() {
return this.alarmSetValue;
}
public void setAlarmSetValue(int alarmSetValue) {
this.alarmSetValue = alarmSetValue;
}
public int getAlarmValue() {
return this.alarmValue;
}
public void setAlarmValue(int alarmValue) {
this.alarmValue = alarmValue;
}
public long getAlarmTime() {
return this.alarmTime;
}
public void setAlarmTime(long alarmTime) {
this.alarmTime = alarmTime;
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
}
public String getCustId() {
return this.custId;
}
public void setCustId(String custId) {
this.custId = custId;
}
public String getApplicationId() {
return this.applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
}
}
@@ -0,0 +1,87 @@
package cn.cloudwalk.cwos.client.event.event.mall;
import cn.cloudwalk.cwos.client.event.event.BaseEvent;
public class PreStatsPernoPushEvent extends BaseEvent {
private String userId;
private int perno;
private long statsTime;
private int areaType;
private String areaId;
private String storeId;
private String custId;
private String applicationId;
private int pernoIn;
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public int getPerno() {
return this.perno;
}
public void setPerno(int perno) {
this.perno = perno;
}
public long getStatsTime() {
return this.statsTime;
}
public void setStatsTime(long statsTime) {
this.statsTime = statsTime;
}
public int getAreaType() {
return this.areaType;
}
public void setAreaType(int areaType) {
this.areaType = areaType;
}
public String getAreaId() {
return this.areaId;
}
public void setAreaId(String areaId) {
this.areaId = areaId;
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
}
public String getCustId() {
return this.custId;
}
public void setCustId(String custId) {
this.custId = custId;
}
public String getApplicationId() {
return this.applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
}
public int getPernoIn() {
return this.pernoIn;
}
public void setPernoIn(int pernoIn) {
this.pernoIn = pernoIn;
}
}
@@ -0,0 +1,70 @@
package cn.cloudwalk.cwos.client.event.event.mall;
import cn.cloudwalk.cwos.client.event.event.BaseEvent;
import java.util.List;
public class PreparationDealDataEvent extends BaseEvent {
private String dealId;
private String dealRoom;
private Long dealTime;
private Integer status;
private String consultant;
private String storeId;
private List<Customer> customerList;
public String getDealId() {
return this.dealId;
}
public void setDealId(String dealId) {
this.dealId = dealId;
}
public String getDealRoom() {
return this.dealRoom;
}
public void setDealRoom(String dealRoom) {
this.dealRoom = dealRoom;
}
public Long getDealTime() {
return this.dealTime;
}
public void setDealTime(Long dealTime) {
this.dealTime = dealTime;
}
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public String getConsultant() {
return this.consultant;
}
public void setConsultant(String consultant) {
this.consultant = consultant;
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
}
public List<Customer> getCustomerList() {
return this.customerList;
}
public void setCustomerList(List<Customer> customerList) {
this.customerList = customerList;
}
}
@@ -0,0 +1,31 @@
package cn.cloudwalk.cwos.client.event.event.mode;
public class Angel {
private Float pitch;
private Float yaw;
private Float roll;
public Float getPitch() {
return this.pitch;
}
public void setPitch(Float pitch) {
this.pitch = pitch;
}
public Float getYaw() {
return this.yaw;
}
public void setYaw(Float yaw) {
this.yaw = yaw;
}
public Float getRoll() {
return this.roll;
}
public void setRoll(Float roll) {
this.roll = roll;
}
}
@@ -0,0 +1,120 @@
package cn.cloudwalk.cwos.client.event.event.mode;
import java.util.List;
public class BodyPose {
private int handUpLeft;
private int handUpRight;
private int tumble;
private float keyptScore;
private int keyptNum;
private List<KeyPoint> keyPoints;
private List<Line> lines;
public int getHandUpLeft() {
return this.handUpLeft;
}
public void setHandUpLeft(int handUpLeft) {
this.handUpLeft = handUpLeft;
}
public int getHandUpRight() {
return this.handUpRight;
}
public void setHandUpRight(int handUpRight) {
this.handUpRight = handUpRight;
}
public int getTumble() {
return this.tumble;
}
public void setTumble(int tumble) {
this.tumble = tumble;
}
public float getKeyptScore() {
return this.keyptScore;
}
public void setKeyptScore(float keyptScore) {
this.keyptScore = keyptScore;
}
public int getKeyptNum() {
return this.keyptNum;
}
public void setKeyptNum(int keyptNum) {
this.keyptNum = keyptNum;
}
public List<KeyPoint> getKeyPoints() {
return this.keyPoints;
}
public void setKeyPoints(List<KeyPoint> keyPoints) {
this.keyPoints = keyPoints;
}
public List<Line> getLines() {
return this.lines;
}
public void setLines(List<Line> lines) {
this.lines = lines;
}
public static class KeyPoint {
private int x;
private int y;
private float score;
public int getX() {
return this.x;
}
public void setX(int x) {
this.x = x;
}
public int getY() {
return this.y;
}
public void setY(int y) {
this.y = y;
}
public float getScore() {
return this.score;
}
public void setScore(float score) {
this.score = score;
}
}
public static class Line {
private int x;
private int y;
public int getX() {
return this.x;
}
public void setX(int x) {
this.x = x;
}
public int getY() {
return this.y;
}
public void setY(int y) {
this.y = y;
}
}
}
@@ -0,0 +1,105 @@
package cn.cloudwalk.cwos.client.event.event.mode;
import cn.cloudwalk.cwos.client.event.event.Location;
public class BodyReidPerson {
private String faceImagePath;
private String imagePath;
private String deviceId;
private Location location;
private Float qualityScore;
private Integer trackId;
private String feature;
private Long captureTime;
private Panorama panorama;
private String attribute;
private String keyPoints;
public String getImagePath() {
return this.imagePath;
}
public void setImagePath(String imagePath) {
this.imagePath = imagePath;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public Location getLocation() {
return this.location;
}
public void setLocation(Location location) {
this.location = location;
}
public Float getQualityScore() {
return this.qualityScore;
}
public void setQualityScore(Float qualityScore) {
this.qualityScore = qualityScore;
}
public Integer getTrackId() {
return this.trackId;
}
public void setTrackId(Integer trackId) {
this.trackId = trackId;
}
public String getFeature() {
return this.feature;
}
public void setFeature(String feature) {
this.feature = feature;
}
public Long getCaptureTime() {
return this.captureTime;
}
public void setCaptureTime(Long captureTime) {
this.captureTime = captureTime;
}
public Panorama getPanorama() {
return this.panorama;
}
public void setPanorama(Panorama panorama) {
this.panorama = panorama;
}
public String getAttribute() {
return this.attribute;
}
public void setAttribute(String attribute) {
this.attribute = attribute;
}
public String getKeyPoints() {
return this.keyPoints;
}
public void setKeyPoints(String keyPoints) {
this.keyPoints = keyPoints;
}
public String getFaceImagePath() {
return this.faceImagePath;
}
public void setFaceImagePath(String faceImagePath) {
this.faceImagePath = faceImagePath;
}
}
@@ -0,0 +1,31 @@
package cn.cloudwalk.cwos.client.event.event.mode;
public class BodyTrack {
private String feature;
private String qualityScore;
private String extractVersion;
public String getFeature() {
return this.feature;
}
public void setFeature(String feature) {
this.feature = feature;
}
public String getQualityScore() {
return this.qualityScore;
}
public void setQualityScore(String qualityScore) {
this.qualityScore = qualityScore;
}
public String getExtractVersion() {
return this.extractVersion;
}
public void setExtractVersion(String extractVersion) {
this.extractVersion = extractVersion;
}
}
@@ -0,0 +1,106 @@
package cn.cloudwalk.cwos.client.event.event.mode;
import com.alibaba.fastjson.annotation.JSONField;
public class CardData {
@JSONField(name = "name")
private String name;
private String cardId;
private String cardImagePath;
private String cardType;
private String folk;
private Integer sex;
private String birthday;
private String address;
private String validdate1;
private String validdate2;
private String authority;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getCardId() {
return this.cardId;
}
public void setCardId(String cardId) {
this.cardId = cardId;
}
public String getCardImagePath() {
return this.cardImagePath;
}
public void setCardImagePath(String cardImagePath) {
this.cardImagePath = cardImagePath;
}
public String getCardType() {
return this.cardType;
}
public void setCardType(String cardType) {
this.cardType = cardType;
}
public String getFolk() {
return this.folk;
}
public void setFolk(String folk) {
this.folk = folk;
}
public Integer getSex() {
return this.sex;
}
public void setSex(Integer sex) {
this.sex = sex;
}
public String getBirthday() {
return this.birthday;
}
public void setBirthday(String birthday) {
this.birthday = birthday;
}
public String getAddress() {
return this.address;
}
public void setAddress(String address) {
this.address = address;
}
public String getValiddate1() {
return this.validdate1;
}
public void setValiddate1(String validdate1) {
this.validdate1 = validdate1;
}
public String getValiddate2() {
return this.validdate2;
}
public void setValiddate2(String validdate2) {
this.validdate2 = validdate2;
}
public String getAuthority() {
return this.authority;
}
public void setAuthority(String authority) {
this.authority = authority;
}
}
@@ -0,0 +1,49 @@
package cn.cloudwalk.cwos.client.event.event.mode;
public class ClusterResultData {
private String userId;
private Long labelId;
private String groupId;
private Short flag;
private Long oldLabelId;
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public Long getLabelId() {
return this.labelId;
}
public void setLabelId(Long labelId) {
this.labelId = labelId;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public Short getFlag() {
return this.flag;
}
public void setFlag(Short flag) {
this.flag = flag;
}
public Long getOldLabelId() {
return this.oldLabelId;
}
public void setOldLabelId(Long oldLabelId) {
this.oldLabelId = oldLabelId;
}
}
@@ -0,0 +1,103 @@
package cn.cloudwalk.cwos.client.event.event.mode;
public class DeviceAlarm {
private String deviceId;
private String deviceName;
private Long captureTime;
private String faceImageUrl;
private String faceTempImageUrl;
private Float temperature;
private Float tempImgBright;
private Boolean haveProceduremask;
private Float confidence;
private Float clarity;
private Float proceduremaskscore;
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public Long getCaptureTime() {
return this.captureTime;
}
public void setCaptureTime(Long captureTime) {
this.captureTime = captureTime;
}
public String getFaceImageUrl() {
return this.faceImageUrl;
}
public void setFaceImageUrl(String faceImageUrl) {
this.faceImageUrl = faceImageUrl;
}
public String getFaceTempImageUrl() {
return this.faceTempImageUrl;
}
public void setFaceTempImageUrl(String faceTempImageUrl) {
this.faceTempImageUrl = faceTempImageUrl;
}
public Float getTemperature() {
return this.temperature;
}
public void setTemperature(Float temperature) {
this.temperature = temperature;
}
public Float getTempImgBright() {
return this.tempImgBright;
}
public void setTempImgBright(Float tempImgBright) {
this.tempImgBright = tempImgBright;
}
public Boolean getHaveProceduremask() {
return this.haveProceduremask;
}
public void setHaveProceduremask(Boolean haveProceduremask) {
this.haveProceduremask = haveProceduremask;
}
public Float getConfidence() {
return this.confidence;
}
public void setConfidence(Float confidence) {
this.confidence = confidence;
}
public Float getClarity() {
return this.clarity;
}
public void setClarity(Float clarity) {
this.clarity = clarity;
}
public Float getProceduremaskscore() {
return this.proceduremaskscore;
}
public void setProceduremaskscore(Float proceduremaskscore) {
this.proceduremaskscore = proceduremaskscore;
}
}
@@ -0,0 +1,31 @@
package cn.cloudwalk.cwos.client.event.event.mode;
public class Expression {
private int type;
private float probability;
private float smileScore;
public int getType() {
return this.type;
}
public void setType(int type) {
this.type = type;
}
public float getProbability() {
return this.probability;
}
public void setProbability(float probability) {
this.probability = probability;
}
public float getSmileScore() {
return this.smileScore;
}
public void setSmileScore(float smileScore) {
this.smileScore = smileScore;
}
}
@@ -0,0 +1,96 @@
package cn.cloudwalk.cwos.client.event.event.mode;
import cn.cloudwalk.cwos.client.event.event.Location;
public class Face {
private String faceId;
private String faceImagePath;
private Long recognitionTime;
private Integer recognitionResult;
private Float score;
private Float qualityScore;
private Float tempScore;
private Float maskScore;
private String groupId;
private Location location;
public String getFaceId() {
return this.faceId;
}
public void setFaceId(String faceId) {
this.faceId = faceId;
}
public String getFaceImagePath() {
return this.faceImagePath;
}
public void setFaceImagePath(String faceImagePath) {
this.faceImagePath = faceImagePath;
}
public Long getRecognitionTime() {
return this.recognitionTime;
}
public void setRecognitionTime(Long recognitionTime) {
this.recognitionTime = recognitionTime;
}
public Integer getRecognitionResult() {
return this.recognitionResult;
}
public void setRecognitionResult(Integer recognitionResult) {
this.recognitionResult = recognitionResult;
}
public Float getScore() {
return this.score;
}
public void setScore(Float score) {
this.score = score;
}
public Float getQualityScore() {
return this.qualityScore;
}
public void setQualityScore(Float qualityScore) {
this.qualityScore = qualityScore;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public Location getLocation() {
return this.location;
}
public void setLocation(Location location) {
this.location = location;
}
public Float getTempScore() {
return this.tempScore;
}
public void setTempScore(Float tempScore) {
this.tempScore = tempScore;
}
public Float getMaskScore() {
return this.maskScore;
}
public void setMaskScore(Float maskScore) {
this.maskScore = maskScore;
}
}
@@ -0,0 +1,96 @@
package cn.cloudwalk.cwos.client.event.event.mode;
import cn.cloudwalk.cwos.client.event.event.Location;
public class FaceCapture {
private String imageId;
private String imagePath;
private String captureId;
private long captureTime;
private Location panoramaLocation;
private Location location;
private FaceQuality faceQuality;
private Integer age;
private Gender gender;
private Integer storageStatus;
public String getImageId() {
return this.imageId;
}
public void setImageId(String imageId) {
this.imageId = imageId;
}
public String getImagePath() {
return this.imagePath;
}
public void setImagePath(String imagePath) {
this.imagePath = imagePath;
}
public String getCaptureId() {
return this.captureId;
}
public void setCaptureId(String captureId) {
this.captureId = captureId;
}
public long getCaptureTime() {
return this.captureTime;
}
public void setCaptureTime(long captureTime) {
this.captureTime = captureTime;
}
public Location getPanoramaLocation() {
return this.panoramaLocation;
}
public void setPanoramaLocation(Location panoramaLocation) {
this.panoramaLocation = panoramaLocation;
}
public Location getLocation() {
return this.location;
}
public void setLocation(Location location) {
this.location = location;
}
public Integer getAge() {
return this.age;
}
public void setAge(Integer age) {
this.age = age;
}
public Gender getGender() {
return this.gender;
}
public void setGender(Gender gender) {
this.gender = gender;
}
public FaceQuality getFaceQuality() {
return this.faceQuality;
}
public void setFaceQuality(FaceQuality faceQuality) {
this.faceQuality = faceQuality;
}
public Integer getStorageStatus() {
return this.storageStatus;
}
public void setStorageStatus(Integer storageStatus) {
this.storageStatus = storageStatus;
}
}
@@ -0,0 +1,76 @@
package cn.cloudwalk.cwos.client.event.event.mode;
public class FaceFeature {
private String captureId;
private String platPersonId;
private long captureTime;
private String imagePath;
private String feature;
private Integer storageStatus;
private String remark;
private FaceFeatureQuality faceFeatureQuality;
public String getCaptureId() {
return this.captureId;
}
public void setCaptureId(String captureId) {
this.captureId = captureId;
}
public String getPlatPersonId() {
return this.platPersonId;
}
public void setPlatPersonId(String platPersonId) {
this.platPersonId = platPersonId;
}
public long getCaptureTime() {
return this.captureTime;
}
public void setCaptureTime(long captureTime) {
this.captureTime = captureTime;
}
public String getImagePath() {
return this.imagePath;
}
public void setImagePath(String imagePath) {
this.imagePath = imagePath;
}
public String getFeature() {
return this.feature;
}
public void setFeature(String feature) {
this.feature = feature;
}
public Integer getStorageStatus() {
return this.storageStatus;
}
public void setStorageStatus(Integer storageStatus) {
this.storageStatus = storageStatus;
}
public FaceFeatureQuality getFaceFeatureQuality() {
return this.faceFeatureQuality;
}
public void setFaceFeatureQuality(FaceFeatureQuality faceFeatureQuality) {
this.faceFeatureQuality = faceFeatureQuality;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
}
@@ -0,0 +1,103 @@
package cn.cloudwalk.cwos.client.event.event.mode;
public class FaceFeatureQuality {
private Float score;
private Integer gender;
private Integer age;
private Double clarity;
private Double brightness;
private Double pitch;
private Double yaw;
private Double roll;
private Double key;
private Double occlusion;
private Double skin;
public Float getScore() {
return this.score;
}
public void setScore(Float score) {
this.score = score;
}
public Double getClarity() {
return this.clarity;
}
public void setClarity(Double clarity) {
this.clarity = clarity;
}
public Double getBrightness() {
return this.brightness;
}
public void setBrightness(Double brightness) {
this.brightness = brightness;
}
public Double getPitch() {
return this.pitch;
}
public void setPitch(Double pitch) {
this.pitch = pitch;
}
public Double getYaw() {
return this.yaw;
}
public void setYaw(Double yaw) {
this.yaw = yaw;
}
public Double getRoll() {
return this.roll;
}
public void setRoll(Double roll) {
this.roll = roll;
}
public Double getKey() {
return this.key;
}
public void setKey(Double key) {
this.key = key;
}
public Double getOcclusion() {
return this.occlusion;
}
public void setOcclusion(Double occlusion) {
this.occlusion = occlusion;
}
public Double getSkin() {
return this.skin;
}
public void setSkin(Double skin) {
this.skin = skin;
}
public Integer getGender() {
return this.gender;
}
public void setGender(Integer gender) {
this.gender = gender;
}
public Integer getAge() {
return this.age;
}
public void setAge(Integer age) {
this.age = age;
}
}
@@ -0,0 +1,58 @@
package cn.cloudwalk.cwos.client.event.event.mode;
public class FaceLibrary {
private String groupId;
private String faceId;
private Float score;
private String recogVersion;
private String platPersonId;
private String imagePath;
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getFaceId() {
return this.faceId;
}
public void setFaceId(String faceId) {
this.faceId = faceId;
}
public Float getScore() {
return this.score;
}
public void setScore(Float score) {
this.score = score;
}
public String getRecogVersion() {
return this.recogVersion;
}
public void setRecogVersion(String recogVersion) {
this.recogVersion = recogVersion;
}
public String getImagePath() {
return this.imagePath;
}
public void setImagePath(String imagePath) {
this.imagePath = imagePath;
}
public String getPlatPersonId() {
return this.platPersonId;
}
public void setPlatPersonId(String platPersonId) {
this.platPersonId = platPersonId;
}
}
@@ -0,0 +1,148 @@
package cn.cloudwalk.cwos.client.event.event.mode;
public class FaceQuality {
private Float qualityScore;
private Float clarity;
private Float brightness;
private Float yawScore;
private Float pitchScore;
private Float skinScore;
private Float mouthOpening;
private Float leftEyeOpening;
private Float rightEyeOpening;
private Float leftEyeOcclusionProb;
private Float rightEyeOcclusionrob;
private Float blackFrameGlassProb;
private Float sunglassProb;
private Float mogClearness;
private Float tempScore;
private Float maskScore;
public Float getQualityScore() {
return this.qualityScore;
}
public void setQualityScore(Float qualityScore) {
this.qualityScore = qualityScore;
}
public Float getClarity() {
return this.clarity;
}
public void setClarity(Float clarity) {
this.clarity = clarity;
}
public Float getBrightness() {
return this.brightness;
}
public void setBrightness(Float brightness) {
this.brightness = brightness;
}
public Float getYawScore() {
return this.yawScore;
}
public void setYawScore(Float yawScore) {
this.yawScore = yawScore;
}
public Float getPitchScore() {
return this.pitchScore;
}
public void setPitchScore(Float pitchScore) {
this.pitchScore = pitchScore;
}
public Float getSkinScore() {
return this.skinScore;
}
public void setSkinScore(Float skinScore) {
this.skinScore = skinScore;
}
public Float getMouthOpening() {
return this.mouthOpening;
}
public void setMouthOpening(Float mouthOpening) {
this.mouthOpening = mouthOpening;
}
public Float getLeftEyeOpening() {
return this.leftEyeOpening;
}
public void setLeftEyeOpening(Float leftEyeOpening) {
this.leftEyeOpening = leftEyeOpening;
}
public Float getRightEyeOpening() {
return this.rightEyeOpening;
}
public void setRightEyeOpening(Float rightEyeOpening) {
this.rightEyeOpening = rightEyeOpening;
}
public Float getLeftEyeOcclusionProb() {
return this.leftEyeOcclusionProb;
}
public void setLeftEyeOcclusionProb(Float leftEyeOcclusionProb) {
this.leftEyeOcclusionProb = leftEyeOcclusionProb;
}
public Float getRightEyeOcclusionrob() {
return this.rightEyeOcclusionrob;
}
public void setRightEyeOcclusionrob(Float rightEyeOcclusionrob) {
this.rightEyeOcclusionrob = rightEyeOcclusionrob;
}
public Float getBlackFrameGlassProb() {
return this.blackFrameGlassProb;
}
public void setBlackFrameGlassProb(Float blackFrameGlassProb) {
this.blackFrameGlassProb = blackFrameGlassProb;
}
public Float getSunglassProb() {
return this.sunglassProb;
}
public void setSunglassProb(Float sunglassProb) {
this.sunglassProb = sunglassProb;
}
public Float getMogClearness() {
return this.mogClearness;
}
public void setMogClearness(Float mogClearness) {
this.mogClearness = mogClearness;
}
public Float getTempScore() {
return this.tempScore;
}
public void setTempScore(Float tempScore) {
this.tempScore = tempScore;
}
public Float getMaskScore() {
return this.maskScore;
}
public void setMaskScore(Float maskScore) {
this.maskScore = maskScore;
}
}
@@ -0,0 +1,31 @@
package cn.cloudwalk.cwos.client.event.event.mode;
public class FaceTrack {
private String feature;
private String qualityScores;
private String extractVersion;
public String getFeature() {
return this.feature;
}
public void setFeature(String feature) {
this.feature = feature;
}
public String getQualityScores() {
return this.qualityScores;
}
public void setQualityScores(String qualityScores) {
this.qualityScores = qualityScores;
}
public String getExtractVersion() {
return this.extractVersion;
}
public void setExtractVersion(String extractVersion) {
this.extractVersion = extractVersion;
}
}
@@ -0,0 +1,22 @@
package cn.cloudwalk.cwos.client.event.event.mode;
public class Gender {
private Integer type;
private Float probability;
public Integer getType() {
return this.type;
}
public void setType(Integer type) {
this.type = type;
}
public Float getProbability() {
return this.probability;
}
public void setProbability(Float probability) {
this.probability = probability;
}
}
@@ -0,0 +1,103 @@
package cn.cloudwalk.cwos.client.event.event.mode;
public class HeadData {
private String roiId;
private Integer x;
private Integer y;
private Integer width;
private Integer height;
private Integer direction;
private Integer speed;
private String detectId;
private Integer roiBelong;
private Integer roiEdge;
private Integer roiStatus;
public String getRoiId() {
return this.roiId;
}
public void setRoiId(String roiId) {
this.roiId = roiId;
}
public Integer getX() {
return this.x;
}
public void setX(Integer x) {
this.x = x;
}
public Integer getY() {
return this.y;
}
public void setY(Integer y) {
this.y = y;
}
public Integer getWidth() {
return this.width;
}
public void setWidth(Integer width) {
this.width = width;
}
public Integer getHeight() {
return this.height;
}
public void setHeight(Integer height) {
this.height = height;
}
public Integer getDirection() {
return this.direction;
}
public void setDirection(Integer direction) {
this.direction = direction;
}
public Integer getSpeed() {
return this.speed;
}
public void setSpeed(Integer speed) {
this.speed = speed;
}
public String getDetectId() {
return this.detectId;
}
public void setDetectId(String detectId) {
this.detectId = detectId;
}
public Integer getRoiBelong() {
return this.roiBelong;
}
public void setRoiBelong(Integer roiBelong) {
this.roiBelong = roiBelong;
}
public Integer getRoiEdge() {
return this.roiEdge;
}
public void setRoiEdge(Integer roiEdge) {
this.roiEdge = roiEdge;
}
public Integer getRoiStatus() {
return this.roiStatus;
}
public void setRoiStatus(Integer roiStatus) {
this.roiStatus = roiStatus;
}
}
@@ -0,0 +1,49 @@
package cn.cloudwalk.cwos.client.event.event.mode;
public class ImageData {
private String groupId;
private String faceId;
private String code;
private String message;
private Long lastUpdateTime;
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getFaceId() {
return this.faceId;
}
public void setFaceId(String faceId) {
this.faceId = faceId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Long getLastUpdateTime() {
return this.lastUpdateTime;
}
public void setLastUpdateTime(Long lastUpdateTime) {
this.lastUpdateTime = lastUpdateTime;
}
}
@@ -0,0 +1,31 @@
package cn.cloudwalk.cwos.client.event.event.mode;
public class KeyPoint {
private int x;
private int y;
private float score;
public int getX() {
return this.x;
}
public void setX(int x) {
this.x = x;
}
public int getY() {
return this.y;
}
public void setY(int y) {
this.y = y;
}
public float getScore() {
return this.score;
}
public void setScore(float score) {
this.score = score;
}
}
@@ -0,0 +1,40 @@
package cn.cloudwalk.cwos.client.event.event.mode;
public class Panorama {
private String panoramaId;
private String panoramaImagePath;
private String tempImagePath;
private long captureTime;
public String getPanoramaId() {
return this.panoramaId;
}
public void setPanoramaId(String panoramaId) {
this.panoramaId = panoramaId;
}
public String getPanoramaImagePath() {
return this.panoramaImagePath;
}
public void setPanoramaImagePath(String panoramaImagePath) {
this.panoramaImagePath = panoramaImagePath;
}
public long getCaptureTime() {
return this.captureTime;
}
public void setCaptureTime(long captureTime) {
this.captureTime = captureTime;
}
public String getTempImagePath() {
return this.tempImagePath;
}
public void setTempImagePath(String tempImagePath) {
this.tempImagePath = tempImagePath;
}
}
@@ -0,0 +1,40 @@
package cn.cloudwalk.cwos.client.event.event.mode;
public class PanoramaDeviceData {
private String deviceId;
private String imageType;
private String imagePath;
private String reserveInfo;
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getImageType() {
return this.imageType;
}
public void setImageType(String imageType) {
this.imageType = imageType;
}
public String getImagePath() {
return this.imagePath;
}
public void setImagePath(String imagePath) {
this.imagePath = imagePath;
}
public String getReserveInfo() {
return this.reserveInfo;
}
public void setReserveInfo(String reserveInfo) {
this.reserveInfo = reserveInfo;
}
}
@@ -0,0 +1,40 @@
package cn.cloudwalk.cwos.client.event.event.mode;
public class Points {
private Integer x;
private Integer y;
private Integer w;
private Integer h;
public Integer getX() {
return this.x;
}
public void setX(Integer x) {
this.x = x;
}
public Integer getY() {
return this.y;
}
public void setY(Integer y) {
this.y = y;
}
public Integer getW() {
return this.w;
}
public void setW(Integer w) {
this.w = w;
}
public Integer getH() {
return this.h;
}
public void setH(Integer h) {
this.h = h;
}
}
@@ -0,0 +1,22 @@
package cn.cloudwalk.cwos.client.event.event.mode;
public class Position {
private Integer x;
private Integer y;
public Integer getX() {
return this.x;
}
public void setX(Integer x) {
this.x = x;
}
public Integer getY() {
return this.y;
}
public void setY(Integer y) {
this.y = y;
}
}
@@ -0,0 +1,22 @@
package cn.cloudwalk.cwos.client.event.event.mode;
public class Race {
private Integer type;
private Float probability;
public int getType() {
return this.type.intValue();
}
public void setType(int type) {
this.type = Integer.valueOf(type);
}
public float getProbability() {
return this.probability.floatValue();
}
public void setProbability(float probability) {
this.probability = Float.valueOf(probability);
}
}
@@ -0,0 +1,51 @@
package cn.cloudwalk.cwos.client.event.event.mode;
import java.util.List;
public class RoiConfData {
private String roiId;
private String roiName;
private Integer number;
private Integer count;
private List<Points> points;
public String getRoiId() {
return this.roiId;
}
public void setRoiId(String roiId) {
this.roiId = roiId;
}
public String getRoiName() {
return this.roiName;
}
public void setRoiName(String roiName) {
this.roiName = roiName;
}
public Integer getNumber() {
return this.number;
}
public void setNumber(Integer number) {
this.number = number;
}
public Integer getCount() {
return this.count;
}
public void setCount(Integer count) {
this.count = count;
}
public List<Points> getPoints() {
return this.points;
}
public void setPoints(List<Points> points) {
this.points = points;
}
}
@@ -0,0 +1,33 @@
package cn.cloudwalk.cwos.client.event.event.mode;
import java.util.List;
public class RoiData {
private String roiId;
private Integer headCount;
private List<Position> position;
public String getRoiId() {
return this.roiId;
}
public void setRoiId(String roiId) {
this.roiId = roiId;
}
public Integer getHeadCount() {
return this.headCount;
}
public void setHeadCount(Integer headCount) {
this.headCount = headCount;
}
public List<Position> getPosition() {
return this.position;
}
public void setPosition(List<Position> position) {
this.position = position;
}
}
@@ -0,0 +1,69 @@
package cn.cloudwalk.cwos.client.event.event.mode;
import java.util.List;
public class RoiDeviceConfData {
private String deviceId;
private Integer roiCount;
private Integer height;
private Integer width;
private String type;
private Integer method;
private List<RoiConfData> roiData;
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public Integer getRoiCount() {
return this.roiCount;
}
public void setRoiCount(Integer roiCount) {
this.roiCount = roiCount;
}
public Integer getHeight() {
return this.height;
}
public void setHeight(Integer height) {
this.height = height;
}
public Integer getWidth() {
return this.width;
}
public void setWidth(Integer width) {
this.width = width;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public Integer getMethod() {
return this.method;
}
public void setMethod(Integer method) {
this.method = method;
}
public List<RoiConfData> getRoiData() {
return this.roiData;
}
public void setRoiData(List<RoiConfData> roiData) {
this.roiData = roiData;
}
}
@@ -0,0 +1,60 @@
package cn.cloudwalk.cwos.client.event.event.mode;
import java.util.List;
public class RoiDeviceData {
private String deviceId;
private Integer headMode;
private Integer headCount;
private RoiPanoramaData panoramaData;
private List<RoiData> roiData;
private List<HeadData> headData;
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public Integer getHeadMode() {
return this.headMode;
}
public void setHeadMode(Integer headMode) {
this.headMode = headMode;
}
public Integer getHeadCount() {
return this.headCount;
}
public void setHeadCount(Integer headCount) {
this.headCount = headCount;
}
public RoiPanoramaData getPanoramaData() {
return this.panoramaData;
}
public void setPanoramaData(RoiPanoramaData panoramaData) {
this.panoramaData = panoramaData;
}
public List<RoiData> getRoiData() {
return this.roiData;
}
public void setRoiData(List<RoiData> roiData) {
this.roiData = roiData;
}
public List<HeadData> getHeadData() {
return this.headData;
}
public void setHeadData(List<HeadData> headData) {
this.headData = headData;
}
}
@@ -0,0 +1,31 @@
package cn.cloudwalk.cwos.client.event.event.mode;
public class RoiDeviceRegisterData {
private String deviceId;
private String deviceName;
private Long regTime;
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public Long getRegTime() {
return this.regTime;
}
public void setRegTime(Long regTime) {
this.regTime = regTime;
}
}
@@ -0,0 +1,22 @@
package cn.cloudwalk.cwos.client.event.event.mode;
public class RoiPanoramaData {
private String panoramaId;
private String panoramaImagePath;
public String getPanoramaId() {
return this.panoramaId;
}
public void setPanoramaId(String panoramaId) {
this.panoramaId = panoramaId;
}
public String getPanoramaImagePath() {
return this.panoramaImagePath;
}
public void setPanoramaImagePath(String panoramaImagePath) {
this.panoramaImagePath = panoramaImagePath;
}
}
@@ -0,0 +1,13 @@
package cn.cloudwalk.cwos.client.event.event.mode;
public class Uygur {
private Float probability;
public Float getProbability() {
return this.probability;
}
public void setProbability(Float probability) {
this.probability = probability;
}
}
@@ -0,0 +1,33 @@
package cn.cloudwalk.cwos.client.event.event.resource;
import cn.cloudwalk.cwos.client.event.event.BaseEvent;
public class EnterpriseChangeEvent extends BaseEvent {
private String businessName;
private Long changeTime;
private String change;
public String getBusinessName() {
return this.businessName;
}
public void setBusinessName(String businessName) {
this.businessName = businessName;
}
public Long getChangeTime() {
return this.changeTime;
}
public void setChangeTime(Long changeTime) {
this.changeTime = changeTime;
}
public String getChange() {
return this.change;
}
public void setChange(String change) {
this.change = change;
}
}
@@ -0,0 +1,94 @@
package cn.cloudwalk.cwos.client.event.event.structure;
public class Body {
private String trackId;
private Long captureTime;
private String backgroundPic;
private String backgroundPicPath;
private String bodyPic;
private String bodyPicPath;
private String qualityScore;
private String feature;
private LocationData bodyLocation;
private BodyAttrsData bodyAttrs;
public String getBackgroundPicPath() {
return this.backgroundPicPath;
}
public void setBackgroundPicPath(String backgroundPicPath) {
this.backgroundPicPath = backgroundPicPath;
}
public String getBodyPicPath() {
return this.bodyPicPath;
}
public void setBodyPicPath(String bodyPicPath) {
this.bodyPicPath = bodyPicPath;
}
public String getTrackId() {
return this.trackId;
}
public void setTrackId(String trackId) {
this.trackId = trackId;
}
public Long getCaptureTime() {
return this.captureTime;
}
public void setCaptureTime(Long captureTime) {
this.captureTime = captureTime;
}
public String getBackgroundPic() {
return this.backgroundPic;
}
public void setBackgroundPic(String backgroundPic) {
this.backgroundPic = backgroundPic;
}
public String getBodyPic() {
return this.bodyPic;
}
public void setBodyPic(String bodyPic) {
this.bodyPic = bodyPic;
}
public String getQualityScore() {
return this.qualityScore;
}
public void setQualityScore(String qualityScore) {
this.qualityScore = qualityScore;
}
public String getFeature() {
return this.feature;
}
public void setFeature(String feature) {
this.feature = feature;
}
public LocationData getBodyLocation() {
return this.bodyLocation;
}
public void setBodyLocation(LocationData bodyLocation) {
this.bodyLocation = bodyLocation;
}
public BodyAttrsData getBodyAttrs() {
return this.bodyAttrs;
}
public void setBodyAttrs(BodyAttrsData bodyAttrs) {
this.bodyAttrs = bodyAttrs;
}
}
@@ -0,0 +1,409 @@
package cn.cloudwalk.cwos.client.event.event.structure;
public class BodyAttrsData {
private ValueScoreData ageUpLimit;
private ValueScoreData ageLowerLimit;
private ValueScoreData age;
private ValueScoreData heightUpLimit;
private ValueScoreData heightLowerLimit;
private ValueScoreData coatTexture;
private ValueScoreData coatStyle;
private ValueScoreData coatColor;
private ValueScoreData trousersStyle;
private ValueScoreData trousersColor;
private ValueScoreData skinColor;
private ValueScoreData hairStyle;
private ValueScoreData hairColor;
private ValueScoreData gesture;
private ValueScoreData status;
private ValueScoreData facialFeature;
private ValueScoreData physicalFeature;
private ValueScoreData bodyFeature;
private ValueScoreData habitualMovement;
private ValueScoreData behavior;
private ValueScoreData appendantPhone;
private ValueScoreData appendantUmbrella;
private ValueScoreData appendantMask;
private ValueScoreData appendantWatch;
private ValueScoreData appendantGlasses;
private ValueScoreData appendantCap;
private ValueScoreData appendantPack;
private ValueScoreData appendantScarf;
private ValueScoreData appendantOther;
private ValueScoreData glassStyle;
private ValueScoreData glassColor;
private ValueScoreData scarfColor;
private ValueScoreData shoesStyle;
private ValueScoreData bodyType;
private ValueScoreData bagStyle;
private ValueScoreData frontpackStyle;
private ValueScoreData carry;
private ValueScoreData umbrella;
private ValueScoreData umbrella_color;
private ValueScoreData moveDirection;
private ValueScoreData moveSpeed;
private ValueScoreData isDriver;
private ValueScoreData isDeputyDriver;
private ValueScoreData barrow;
private ValueScoreData haveBaby;
public ValueScoreData getAgeUpLimit() {
return this.ageUpLimit;
}
public void setAgeUpLimit(ValueScoreData ageUpLimit) {
this.ageUpLimit = ageUpLimit;
}
public ValueScoreData getAgeLowerLimit() {
return this.ageLowerLimit;
}
public void setAgeLowerLimit(ValueScoreData ageLowerLimit) {
this.ageLowerLimit = ageLowerLimit;
}
public ValueScoreData getAge() {
return this.age;
}
public void setAge(ValueScoreData age) {
this.age = age;
}
public ValueScoreData getHeightUpLimit() {
return this.heightUpLimit;
}
public void setHeightUpLimit(ValueScoreData heightUpLimit) {
this.heightUpLimit = heightUpLimit;
}
public ValueScoreData getHeightLowerLimit() {
return this.heightLowerLimit;
}
public void setHeightLowerLimit(ValueScoreData heightLowerLimit) {
this.heightLowerLimit = heightLowerLimit;
}
public ValueScoreData getCoatTexture() {
return this.coatTexture;
}
public void setCoatTexture(ValueScoreData coatTexture) {
this.coatTexture = coatTexture;
}
public ValueScoreData getCoatStyle() {
return this.coatStyle;
}
public void setCoatStyle(ValueScoreData coatStyle) {
this.coatStyle = coatStyle;
}
public ValueScoreData getCoatColor() {
return this.coatColor;
}
public void setCoatColor(ValueScoreData coatColor) {
this.coatColor = coatColor;
}
public ValueScoreData getTrousersStyle() {
return this.trousersStyle;
}
public void setTrousersStyle(ValueScoreData trousersStyle) {
this.trousersStyle = trousersStyle;
}
public ValueScoreData getTrousersColor() {
return this.trousersColor;
}
public void setTrousersColor(ValueScoreData trousersColor) {
this.trousersColor = trousersColor;
}
public ValueScoreData getSkinColor() {
return this.skinColor;
}
public void setSkinColor(ValueScoreData skinColor) {
this.skinColor = skinColor;
}
public ValueScoreData getHairStyle() {
return this.hairStyle;
}
public void setHairStyle(ValueScoreData hairStyle) {
this.hairStyle = hairStyle;
}
public ValueScoreData getHairColor() {
return this.hairColor;
}
public void setHairColor(ValueScoreData hairColor) {
this.hairColor = hairColor;
}
public ValueScoreData getGesture() {
return this.gesture;
}
public void setGesture(ValueScoreData gesture) {
this.gesture = gesture;
}
public ValueScoreData getStatus() {
return this.status;
}
public void setStatus(ValueScoreData status) {
this.status = status;
}
public ValueScoreData getFacialFeature() {
return this.facialFeature;
}
public void setFacialFeature(ValueScoreData facialFeature) {
this.facialFeature = facialFeature;
}
public ValueScoreData getPhysicalFeature() {
return this.physicalFeature;
}
public void setPhysicalFeature(ValueScoreData physicalFeature) {
this.physicalFeature = physicalFeature;
}
public ValueScoreData getBodyFeature() {
return this.bodyFeature;
}
public void setBodyFeature(ValueScoreData bodyFeature) {
this.bodyFeature = bodyFeature;
}
public ValueScoreData getHabitualMovement() {
return this.habitualMovement;
}
public void setHabitualMovement(ValueScoreData habitualMovement) {
this.habitualMovement = habitualMovement;
}
public ValueScoreData getBehavior() {
return this.behavior;
}
public void setBehavior(ValueScoreData behavior) {
this.behavior = behavior;
}
public ValueScoreData getAppendantPhone() {
return this.appendantPhone;
}
public void setAppendantPhone(ValueScoreData appendantPhone) {
this.appendantPhone = appendantPhone;
}
public ValueScoreData getAppendantUmbrella() {
return this.appendantUmbrella;
}
public void setAppendantUmbrella(ValueScoreData appendantUmbrella) {
this.appendantUmbrella = appendantUmbrella;
}
public ValueScoreData getAppendantMask() {
return this.appendantMask;
}
public void setAppendantMask(ValueScoreData appendantMask) {
this.appendantMask = appendantMask;
}
public ValueScoreData getAppendantWatch() {
return this.appendantWatch;
}
public void setAppendantWatch(ValueScoreData appendantWatch) {
this.appendantWatch = appendantWatch;
}
public ValueScoreData getAppendantGlasses() {
return this.appendantGlasses;
}
public void setAppendantGlasses(ValueScoreData appendantGlasses) {
this.appendantGlasses = appendantGlasses;
}
public ValueScoreData getAppendantCap() {
return this.appendantCap;
}
public void setAppendantCap(ValueScoreData appendantCap) {
this.appendantCap = appendantCap;
}
public ValueScoreData getAppendantPack() {
return this.appendantPack;
}
public void setAppendantPack(ValueScoreData appendantPack) {
this.appendantPack = appendantPack;
}
public ValueScoreData getAppendantScarf() {
return this.appendantScarf;
}
public void setAppendantScarf(ValueScoreData appendantScarf) {
this.appendantScarf = appendantScarf;
}
public ValueScoreData getAppendantOther() {
return this.appendantOther;
}
public void setAppendantOther(ValueScoreData appendantOther) {
this.appendantOther = appendantOther;
}
public ValueScoreData getGlassStyle() {
return this.glassStyle;
}
public void setGlassStyle(ValueScoreData glassStyle) {
this.glassStyle = glassStyle;
}
public ValueScoreData getGlassColor() {
return this.glassColor;
}
public void setGlassColor(ValueScoreData glassColor) {
this.glassColor = glassColor;
}
public ValueScoreData getScarfColor() {
return this.scarfColor;
}
public void setScarfColor(ValueScoreData scarfColor) {
this.scarfColor = scarfColor;
}
public ValueScoreData getShoesStyle() {
return this.shoesStyle;
}
public void setShoesStyle(ValueScoreData shoesStyle) {
this.shoesStyle = shoesStyle;
}
public ValueScoreData getBodyType() {
return this.bodyType;
}
public void setBodyType(ValueScoreData bodyType) {
this.bodyType = bodyType;
}
public ValueScoreData getBagStyle() {
return this.bagStyle;
}
public void setBagStyle(ValueScoreData bagStyle) {
this.bagStyle = bagStyle;
}
public ValueScoreData getFrontpackStyle() {
return this.frontpackStyle;
}
public void setFrontpackStyle(ValueScoreData frontpackStyle) {
this.frontpackStyle = frontpackStyle;
}
public ValueScoreData getCarry() {
return this.carry;
}
public void setCarry(ValueScoreData carry) {
this.carry = carry;
}
public ValueScoreData getUmbrella() {
return this.umbrella;
}
public void setUmbrella(ValueScoreData umbrella) {
this.umbrella = umbrella;
}
public ValueScoreData getUmbrella_color() {
return this.umbrella_color;
}
public void setUmbrella_color(ValueScoreData umbrella_color) {
this.umbrella_color = umbrella_color;
}
public ValueScoreData getMoveDirection() {
return this.moveDirection;
}
public void setMoveDirection(ValueScoreData moveDirection) {
this.moveDirection = moveDirection;
}
public ValueScoreData getMoveSpeed() {
return this.moveSpeed;
}
public void setMoveSpeed(ValueScoreData moveSpeed) {
this.moveSpeed = moveSpeed;
}
public ValueScoreData getIsDriver() {
return this.isDriver;
}
public void setIsDriver(ValueScoreData isDriver) {
this.isDriver = isDriver;
}
public ValueScoreData getIsDeputyDriver() {
return this.isDeputyDriver;
}
public void setIsDeputyDriver(ValueScoreData isDeputyDriver) {
this.isDeputyDriver = isDeputyDriver;
}
public ValueScoreData getBarrow() {
return this.barrow;
}
public void setBarrow(ValueScoreData barrow) {
this.barrow = barrow;
}
public ValueScoreData getHaveBaby() {
return this.haveBaby;
}
public void setHaveBaby(ValueScoreData haveBaby) {
this.haveBaby = haveBaby;
}
}
@@ -0,0 +1,97 @@
package cn.cloudwalk.cwos.client.event.event.structure;
import java.io.Serializable;
import java.math.BigDecimal;
public class Face implements Serializable {
private String trackId;
private Long captureTime;
private String backgroundPic;
private String backgroundPicPath;
private String facePic;
private String facePicPath;
private BigDecimal qualityScore;
private String feature;
private LocationData faceLocation;
private FaceAttrData faceAttrs;
public String getBackgroundPicPath() {
return this.backgroundPicPath;
}
public void setBackgroundPicPath(String backgroundPicPath) {
this.backgroundPicPath = backgroundPicPath;
}
public String getFacePicPath() {
return this.facePicPath;
}
public void setFacePicPath(String facePicPath) {
this.facePicPath = facePicPath;
}
public String getTrackId() {
return this.trackId;
}
public void setTrackId(String trackId) {
this.trackId = trackId;
}
public Long getCaptureTime() {
return this.captureTime;
}
public void setCaptureTime(Long captureTime) {
this.captureTime = captureTime;
}
public String getBackgroundPic() {
return this.backgroundPic;
}
public void setBackgroundPic(String backgroundPic) {
this.backgroundPic = backgroundPic;
}
public String getFacePic() {
return this.facePic;
}
public void setFacePic(String facePic) {
this.facePic = facePic;
}
public BigDecimal getQualityScore() {
return this.qualityScore;
}
public void setQualityScore(BigDecimal qualityScore) {
this.qualityScore = qualityScore;
}
public String getFeature() {
return this.feature;
}
public void setFeature(String feature) {
this.feature = feature;
}
public LocationData getFaceLocation() {
return this.faceLocation;
}
public void setFaceLocation(LocationData faceLocation) {
this.faceLocation = faceLocation;
}
public FaceAttrData getFaceAttrs() {
return this.faceAttrs;
}
public void setFaceAttrs(FaceAttrData faceAttrs) {
this.faceAttrs = faceAttrs;
}
}
@@ -0,0 +1,373 @@
package cn.cloudwalk.cwos.client.event.event.structure;
public class FaceAttrData {
private ValueScoreData ageUpLimit;
private ValueScoreData ageLowerLimit;
private ValueScoreData age;
private ValueScoreData genderCode;
private ValueScoreData skinColor;
private ValueScoreData hairStyle;
private ValueScoreData hairColor;
private ValueScoreData faceStyle;
private ValueScoreData respirator;
private ValueScoreData respiratorColor;
private ValueScoreData capStyle;
private ValueScoreData capColor;
private ValueScoreData appendantCap;
private ValueScoreData appendantHelmet;
private ValueScoreData nation;
private ValueScoreData race;
private ValueScoreData lightsScore;
private ValueScoreData clarityScore;
private ValueScoreData mouthScore;
private ValueScoreData faceClarityScore;
private ValueScoreData pitch;
private ValueScoreData yaw;
private ValueScoreData roll;
private ValueScoreData printFaceScore;
private ValueScoreData glassesStyle;
private ValueScoreData glassesColor;
private ValueScoreData expression;
private ValueScoreData attitude;
private ValueScoreData ryeBrowStyle;
private ValueScoreData noseStyle;
private ValueScoreData hasBeard;
private ValueScoreData mustaStyle;
private ValueScoreData lipStyle;
private ValueScoreData wrinklePouch;
private ValueScoreData acneStain;
private ValueScoreData freckleBirthmark;
private ValueScoreData scarDimple;
private ValueScoreData otherFeature;
private ValueScoreData isDriver;
private ValueScoreData isDeputyDriver;
private ValueScoreData ethicCode;
public ValueScoreData getAgeUpLimit() {
return this.ageUpLimit;
}
public void setAgeUpLimit(ValueScoreData ageUpLimit) {
this.ageUpLimit = ageUpLimit;
}
public ValueScoreData getAgeLowerLimit() {
return this.ageLowerLimit;
}
public void setAgeLowerLimit(ValueScoreData ageLowerLimit) {
this.ageLowerLimit = ageLowerLimit;
}
public ValueScoreData getAge() {
return this.age;
}
public void setAge(ValueScoreData age) {
this.age = age;
}
public ValueScoreData getGenderCode() {
return this.genderCode;
}
public void setGenderCode(ValueScoreData genderCode) {
this.genderCode = genderCode;
}
public ValueScoreData getSkinColor() {
return this.skinColor;
}
public void setSkinColor(ValueScoreData skinColor) {
this.skinColor = skinColor;
}
public ValueScoreData getHairStyle() {
return this.hairStyle;
}
public void setHairStyle(ValueScoreData hairStyle) {
this.hairStyle = hairStyle;
}
public ValueScoreData getFaceStyle() {
return this.faceStyle;
}
public void setFaceStyle(ValueScoreData faceStyle) {
this.faceStyle = faceStyle;
}
public ValueScoreData getRespirator() {
return this.respirator;
}
public void setRespirator(ValueScoreData respirator) {
this.respirator = respirator;
}
public ValueScoreData getRespiratorColor() {
return this.respiratorColor;
}
public void setRespiratorColor(ValueScoreData respiratorColor) {
this.respiratorColor = respiratorColor;
}
public ValueScoreData getCapStyle() {
return this.capStyle;
}
public void setCapStyle(ValueScoreData capStyle) {
this.capStyle = capStyle;
}
public ValueScoreData getCapColor() {
return this.capColor;
}
public void setCapColor(ValueScoreData capColor) {
this.capColor = capColor;
}
public ValueScoreData getAppendantCap() {
return this.appendantCap;
}
public void setAppendantCap(ValueScoreData appendantCap) {
this.appendantCap = appendantCap;
}
public ValueScoreData getAppendantHelmet() {
return this.appendantHelmet;
}
public void setAppendantHelmet(ValueScoreData appendantHelmet) {
this.appendantHelmet = appendantHelmet;
}
public ValueScoreData getNation() {
return this.nation;
}
public void setNation(ValueScoreData nation) {
this.nation = nation;
}
public ValueScoreData getRace() {
return this.race;
}
public void setRace(ValueScoreData race) {
this.race = race;
}
public ValueScoreData getLightsScore() {
return this.lightsScore;
}
public void setLightsScore(ValueScoreData lightsScore) {
this.lightsScore = lightsScore;
}
public ValueScoreData getClarityScore() {
return this.clarityScore;
}
public void setClarityScore(ValueScoreData clarityScore) {
this.clarityScore = clarityScore;
}
public ValueScoreData getMouthScore() {
return this.mouthScore;
}
public void setMouthScore(ValueScoreData mouthScore) {
this.mouthScore = mouthScore;
}
public ValueScoreData getFaceClarityScore() {
return this.faceClarityScore;
}
public void setFaceClarityScore(ValueScoreData faceClarityScore) {
this.faceClarityScore = faceClarityScore;
}
public ValueScoreData getPitch() {
return this.pitch;
}
public void setPitch(ValueScoreData pitch) {
this.pitch = pitch;
}
public ValueScoreData getYaw() {
return this.yaw;
}
public void setYaw(ValueScoreData yaw) {
this.yaw = yaw;
}
public ValueScoreData getRoll() {
return this.roll;
}
public void setRoll(ValueScoreData roll) {
this.roll = roll;
}
public ValueScoreData getPrintFaceScore() {
return this.printFaceScore;
}
public void setPrintFaceScore(ValueScoreData printFaceScore) {
this.printFaceScore = printFaceScore;
}
public ValueScoreData getGlassesStyle() {
return this.glassesStyle;
}
public void setGlassesStyle(ValueScoreData glassesStyle) {
this.glassesStyle = glassesStyle;
}
public ValueScoreData getGlassesColor() {
return this.glassesColor;
}
public void setGlassesColor(ValueScoreData glassesColor) {
this.glassesColor = glassesColor;
}
public ValueScoreData getExpression() {
return this.expression;
}
public void setExpression(ValueScoreData expression) {
this.expression = expression;
}
public ValueScoreData getAttitude() {
return this.attitude;
}
public void setAttitude(ValueScoreData attitude) {
this.attitude = attitude;
}
public ValueScoreData getRyeBrowStyle() {
return this.ryeBrowStyle;
}
public void setRyeBrowStyle(ValueScoreData ryeBrowStyle) {
this.ryeBrowStyle = ryeBrowStyle;
}
public ValueScoreData getNoseStyle() {
return this.noseStyle;
}
public void setNoseStyle(ValueScoreData noseStyle) {
this.noseStyle = noseStyle;
}
public ValueScoreData getHasBeard() {
return this.hasBeard;
}
public void setHasBeard(ValueScoreData hasBeard) {
this.hasBeard = hasBeard;
}
public ValueScoreData getMustaStyle() {
return this.mustaStyle;
}
public void setMustaStyle(ValueScoreData mustaStyle) {
this.mustaStyle = mustaStyle;
}
public ValueScoreData getLipStyle() {
return this.lipStyle;
}
public void setLipStyle(ValueScoreData lipStyle) {
this.lipStyle = lipStyle;
}
public ValueScoreData getWrinklePouch() {
return this.wrinklePouch;
}
public void setWrinklePouch(ValueScoreData wrinklePouch) {
this.wrinklePouch = wrinklePouch;
}
public ValueScoreData getAcneStain() {
return this.acneStain;
}
public void setAcneStain(ValueScoreData acneStain) {
this.acneStain = acneStain;
}
public ValueScoreData getFreckleBirthmark() {
return this.freckleBirthmark;
}
public void setFreckleBirthmark(ValueScoreData freckleBirthmark) {
this.freckleBirthmark = freckleBirthmark;
}
public ValueScoreData getScarDimple() {
return this.scarDimple;
}
public void setScarDimple(ValueScoreData scarDimple) {
this.scarDimple = scarDimple;
}
public ValueScoreData getOtherFeature() {
return this.otherFeature;
}
public void setOtherFeature(ValueScoreData otherFeature) {
this.otherFeature = otherFeature;
}
public ValueScoreData getIsDriver() {
return this.isDriver;
}
public void setIsDriver(ValueScoreData isDriver) {
this.isDriver = isDriver;
}
public ValueScoreData getIsDeputyDriver() {
return this.isDeputyDriver;
}
public void setIsDeputyDriver(ValueScoreData isDeputyDriver) {
this.isDeputyDriver = isDeputyDriver;
}
public ValueScoreData getEthicCode() {
return this.ethicCode;
}
public void setEthicCode(ValueScoreData ethicCode) {
this.ethicCode = ethicCode;
}
public ValueScoreData getHairColor() {
return this.hairColor;
}
public void setHairColor(ValueScoreData hairColor) {
this.hairColor = hairColor;
}
}
@@ -0,0 +1,40 @@
package cn.cloudwalk.cwos.client.event.event.structure;
public class LocationData {
private Integer x;
private Integer y;
private Integer width;
private Integer height;
public Integer getX() {
return this.x;
}
public void setX(Integer x) {
this.x = x;
}
public Integer getY() {
return this.y;
}
public void setY(Integer y) {
this.y = y;
}
public Integer getWidth() {
return this.width;
}
public void setWidth(Integer width) {
this.width = width;
}
public Integer getHeight() {
return this.height;
}
public void setHeight(Integer height) {
this.height = height;
}
}
@@ -0,0 +1,52 @@
package cn.cloudwalk.cwos.client.event.event.structure;
import java.io.Serializable;
import java.util.List;
public class NonVehicle implements Serializable {
private String nonVehicleId;
private String dataSource;
private List<StrucutrePerson> passengers;
private NonVehicleData nonVehicle;
private PlateData plate;
public String getNonVehicleId() {
return this.nonVehicleId;
}
public void setNonVehicleId(String nonVehicleId) {
this.nonVehicleId = nonVehicleId;
}
public String getDataSource() {
return this.dataSource;
}
public void setDataSource(String dataSource) {
this.dataSource = dataSource;
}
public List<StrucutrePerson> getPassengers() {
return this.passengers;
}
public void setPassengers(List<StrucutrePerson> passengers) {
this.passengers = passengers;
}
public NonVehicleData getNonVehicle() {
return this.nonVehicle;
}
public void setNonVehicle(NonVehicleData nonVehicle) {
this.nonVehicle = nonVehicle;
}
public PlateData getPlate() {
return this.plate;
}
public void setPlate(PlateData plate) {
this.plate = plate;
}
}
@@ -0,0 +1,78 @@
package cn.cloudwalk.cwos.client.event.event.structure;
import java.io.Serializable;
public class NonVehicleAttrData implements Serializable {
private ValueScoreData vehicleColor;
private ValueScoreData manned;
private ValueScoreData convertible;
private ValueScoreData vehicleType;
private ValueScoreData vehicleBrand;
private ValueScoreData vehicleLength;
private ValueScoreData vehicleWidth;
private ValueScoreData vehicleHeight;
public ValueScoreData getVehicleColor() {
return this.vehicleColor;
}
public void setVehicleColor(ValueScoreData vehicleColor) {
this.vehicleColor = vehicleColor;
}
public ValueScoreData getManned() {
return this.manned;
}
public void setManned(ValueScoreData manned) {
this.manned = manned;
}
public ValueScoreData getConvertible() {
return this.convertible;
}
public void setConvertible(ValueScoreData convertible) {
this.convertible = convertible;
}
public ValueScoreData getVehicleType() {
return this.vehicleType;
}
public void setVehicleType(ValueScoreData vehicleType) {
this.vehicleType = vehicleType;
}
public ValueScoreData getVehicleBrand() {
return this.vehicleBrand;
}
public void setVehicleBrand(ValueScoreData vehicleBrand) {
this.vehicleBrand = vehicleBrand;
}
public ValueScoreData getVehicleLength() {
return this.vehicleLength;
}
public void setVehicleLength(ValueScoreData vehicleLength) {
this.vehicleLength = vehicleLength;
}
public ValueScoreData getVehicleWidth() {
return this.vehicleWidth;
}
public void setVehicleWidth(ValueScoreData vehicleWidth) {
this.vehicleWidth = vehicleWidth;
}
public ValueScoreData getVehicleHeight() {
return this.vehicleHeight;
}
public void setVehicleHeight(ValueScoreData vehicleHeight) {
this.vehicleHeight = vehicleHeight;
}
}
@@ -0,0 +1,94 @@
package cn.cloudwalk.cwos.client.event.event.structure;
public class NonVehicleData {
private String captureTime;
private String trackId;
private String nonVehiclePic;
private String nonVehiclePicPath;
private String backgroundPic;
private String backgroundPicPath;
private String qualityScore;
private String feature;
private LocationData nonVehicleLocation;
private NonVehicleAttrData nonVehicleAttrs;
public String getCaptureTime() {
return this.captureTime;
}
public void setCaptureTime(String captureTime) {
this.captureTime = captureTime;
}
public String getTrackId() {
return this.trackId;
}
public void setTrackId(String trackId) {
this.trackId = trackId;
}
public String getNonVehiclePic() {
return this.nonVehiclePic;
}
public void setNonVehiclePic(String nonVehiclePic) {
this.nonVehiclePic = nonVehiclePic;
}
public String getNonVehiclePicPath() {
return this.nonVehiclePicPath;
}
public void setNonVehiclePicPath(String nonVehiclePicPath) {
this.nonVehiclePicPath = nonVehiclePicPath;
}
public String getBackgroundPic() {
return this.backgroundPic;
}
public void setBackgroundPic(String backgroundPic) {
this.backgroundPic = backgroundPic;
}
public String getBackgroundPicPath() {
return this.backgroundPicPath;
}
public void setBackgroundPicPath(String backgroundPicPath) {
this.backgroundPicPath = backgroundPicPath;
}
public String getQualityScore() {
return this.qualityScore;
}
public void setQualityScore(String qualityScore) {
this.qualityScore = qualityScore;
}
public String getFeature() {
return this.feature;
}
public void setFeature(String feature) {
this.feature = feature;
}
public LocationData getNonVehicleLocation() {
return this.nonVehicleLocation;
}
public void setNonVehicleLocation(LocationData nonVehicleLocation) {
this.nonVehicleLocation = nonVehicleLocation;
}
public NonVehicleAttrData getNonVehicleAttrs() {
return this.nonVehicleAttrs;
}
public void setNonVehicleAttrs(NonVehicleAttrData nonVehicleAttrs) {
this.nonVehicleAttrs = nonVehicleAttrs;
}
}
@@ -0,0 +1,22 @@
package cn.cloudwalk.cwos.client.event.event.structure;
public class Person {
private Face face;
public Body bodyVar;
public Face getFace() {
return this.face;
}
public void setFace(Face face) {
this.face = face;
}
public Body getBodyVar() {
return this.bodyVar;
}
public void setBodyVar(Body bodyVar) {
this.bodyVar = bodyVar;
}
}
@@ -0,0 +1,87 @@
package cn.cloudwalk.cwos.client.event.event.structure;
import java.io.Serializable;
public class PlateAttrData implements Serializable {
private ValueScoreData plateNo;
private ValueScoreData plateColor;
private ValueScoreData plateClass;
private ValueScoreData plateMoveDirection;
private ValueScoreData plateDescribe;
private ValueScoreData isDecked;
private ValueScoreData isAltered;
private ValueScoreData isCovered;
private ValueScoreData hasPlate;
public ValueScoreData getPlateNo() {
return this.plateNo;
}
public void setPlateNo(ValueScoreData plateNo) {
this.plateNo = plateNo;
}
public ValueScoreData getPlateColor() {
return this.plateColor;
}
public void setPlateColor(ValueScoreData plateColor) {
this.plateColor = plateColor;
}
public ValueScoreData getPlateClass() {
return this.plateClass;
}
public void setPlateClass(ValueScoreData plateClass) {
this.plateClass = plateClass;
}
public ValueScoreData getPlateMoveDirection() {
return this.plateMoveDirection;
}
public void setPlateMoveDirection(ValueScoreData plateMoveDirection) {
this.plateMoveDirection = plateMoveDirection;
}
public ValueScoreData getPlateDescribe() {
return this.plateDescribe;
}
public void setPlateDescribe(ValueScoreData plateDescribe) {
this.plateDescribe = plateDescribe;
}
public ValueScoreData getIsDecked() {
return this.isDecked;
}
public void setIsDecked(ValueScoreData isDecked) {
this.isDecked = isDecked;
}
public ValueScoreData getIsAltered() {
return this.isAltered;
}
public void setIsAltered(ValueScoreData isAltered) {
this.isAltered = isAltered;
}
public ValueScoreData getIsCovered() {
return this.isCovered;
}
public void setIsCovered(ValueScoreData isCovered) {
this.isCovered = isCovered;
}
public ValueScoreData getHasPlate() {
return this.hasPlate;
}
public void setHasPlate(ValueScoreData hasPlate) {
this.hasPlate = hasPlate;
}
}
@@ -0,0 +1,40 @@
package cn.cloudwalk.cwos.client.event.event.structure;
public class PlateData {
private String platePic;
private String platePicPath;
private LocationData plateLocation;
private PlateAttrData plateAttrs;
public String getPlatePic() {
return this.platePic;
}
public void setPlatePic(String platePic) {
this.platePic = platePic;
}
public LocationData getPlateLocation() {
return this.plateLocation;
}
public void setPlateLocation(LocationData plateLocation) {
this.plateLocation = plateLocation;
}
public PlateAttrData getPlateAttrs() {
return this.plateAttrs;
}
public void setPlateAttrs(PlateAttrData plateAttrs) {
this.plateAttrs = plateAttrs;
}
public String getPlatePicPath() {
return this.platePicPath;
}
public void setPlatePicPath(String platePicPath) {
this.platePicPath = platePicPath;
}
}
@@ -0,0 +1,33 @@
package cn.cloudwalk.cwos.client.event.event.structure;
import cn.cloudwalk.cwos.client.event.event.BaseEvent;
public class StructureCarCaptureEvent extends BaseEvent {
private String subDeviceId;
private String captureId;
private Vehicle vehicle;
public String getSubDeviceId() {
return this.subDeviceId;
}
public void setSubDeviceId(String subDeviceId) {
this.subDeviceId = subDeviceId;
}
public String getCaptureId() {
return this.captureId;
}
public void setCaptureId(String captureId) {
this.captureId = captureId;
}
public Vehicle getVehicle() {
return this.vehicle;
}
public void setVehicle(Vehicle vehicle) {
this.vehicle = vehicle;
}
}
@@ -0,0 +1,33 @@
package cn.cloudwalk.cwos.client.event.event.structure;
import cn.cloudwalk.cwos.client.event.event.BaseEvent;
public class StructureNoCarCaptureEvent extends BaseEvent {
private String subDeviceId;
private String captureId;
private NonVehicle nonVehicle;
public String getSubDeviceId() {
return this.subDeviceId;
}
public void setSubDeviceId(String subDeviceId) {
this.subDeviceId = subDeviceId;
}
public String getCaptureId() {
return this.captureId;
}
public void setCaptureId(String captureId) {
this.captureId = captureId;
}
public NonVehicle getNonVehicle() {
return this.nonVehicle;
}
public void setNonVehicle(NonVehicle nonVehicle) {
this.nonVehicle = nonVehicle;
}
}
@@ -0,0 +1,42 @@
package cn.cloudwalk.cwos.client.event.event.structure;
import cn.cloudwalk.cwos.client.event.event.BaseEvent;
public class StructurePersonCaptureEvent extends BaseEvent {
private String subDeviceId;
private String captureId;
private String personId;
private Person person;
public String getSubDeviceId() {
return this.subDeviceId;
}
public void setSubDeviceId(String subDeviceId) {
this.subDeviceId = subDeviceId;
}
public String getCaptureId() {
return this.captureId;
}
public void setCaptureId(String captureId) {
this.captureId = captureId;
}
public String getPersonId() {
return this.personId;
}
public void setPersonId(String personId) {
this.personId = personId;
}
public Person getPerson() {
return this.person;
}
public void setPerson(Person person) {
this.person = person;
}
}
@@ -0,0 +1,69 @@
package cn.cloudwalk.cwos.client.event.event.structure;
import java.io.Serializable;
public class StrucutrePerson implements Serializable {
private String deviceId;
private String subDeviceId;
private String captureId;
private String personId;
private Person person;
private String reserveInfo;
private String logId;
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getSubDeviceId() {
return this.subDeviceId;
}
public void setSubDeviceId(String subDeviceId) {
this.subDeviceId = subDeviceId;
}
public String getCaptureId() {
return this.captureId;
}
public void setCaptureId(String captureId) {
this.captureId = captureId;
}
public String getPersonId() {
return this.personId;
}
public void setPersonId(String personId) {
this.personId = personId;
}
public Person getPerson() {
return this.person;
}
public void setPerson(Person person) {
this.person = person;
}
public String getReserveInfo() {
return this.reserveInfo;
}
public void setReserveInfo(String reserveInfo) {
this.reserveInfo = reserveInfo;
}
public String getLogId() {
return this.logId;
}
public void setLogId(String logId) {
this.logId = logId;
}
}
@@ -0,0 +1,24 @@
package cn.cloudwalk.cwos.client.event.event.structure;
import java.io.Serializable;
public class ValueScoreData implements Serializable {
private String values;
private Float score;
public String getValues() {
return this.values;
}
public void setValues(String values) {
this.values = values;
}
public Float getScore() {
return this.score;
}
public void setScore(Float score) {
this.score = score;
}
}
@@ -0,0 +1,52 @@
package cn.cloudwalk.cwos.client.event.event.structure;
import java.io.Serializable;
import java.util.List;
public class Vehicle implements Serializable {
private String dataSource;
private List<StrucutrePerson> passengers;
private LocationData vehicleFace;
private VehicleData vehicle;
private PlateData plate;
public String getDataSource() {
return this.dataSource;
}
public void setDataSource(String dataSource) {
this.dataSource = dataSource;
}
public List<StrucutrePerson> getPassengers() {
return this.passengers;
}
public void setPassengers(List<StrucutrePerson> passengers) {
this.passengers = passengers;
}
public LocationData getVehicleFace() {
return this.vehicleFace;
}
public void setVehicleFace(LocationData vehicleFace) {
this.vehicleFace = vehicleFace;
}
public VehicleData getVehicle() {
return this.vehicle;
}
public void setVehicle(VehicleData vehicle) {
this.vehicle = vehicle;
}
public PlateData getPlate() {
return this.plate;
}
public void setPlate(PlateData plate) {
this.plate = plate;
}
}
@@ -0,0 +1,222 @@
package cn.cloudwalk.cwos.client.event.event.structure;
import java.io.Serializable;
public class VehicleAttrData implements Serializable {
private ValueScoreData vehicleColor;
private ValueScoreData vehicleColorDepth;
private ValueScoreData vehicleType;
private ValueScoreData vehicleBrand;
private ValueScoreData vehicleLength;
private ValueScoreData vehicleWidth;
private ValueScoreData vehicleHeight;
private ValueScoreData laneNo;
private ValueScoreData capDirection;
private ValueScoreData direction;
private ValueScoreData speed;
private ValueScoreData drivingStatusCode;
private ValueScoreData visor;
private ValueScoreData driverSeatBell;
private ValueScoreData deputySeatBell;
private ValueScoreData motTag;
private ValueScoreData paper;
private ValueScoreData pendant;
private ValueScoreData sunroof;
private ValueScoreData spareTire;
private ValueScoreData rack;
private ValueScoreData driverCall;
private ValueScoreData dangerGoods;
private ValueScoreData muckCars;
public ValueScoreData getVehicleColor() {
return this.vehicleColor;
}
public void setVehicleColor(ValueScoreData vehicleColor) {
this.vehicleColor = vehicleColor;
}
public ValueScoreData getVehicleColorDepth() {
return this.vehicleColorDepth;
}
public void setVehicleColorDepth(ValueScoreData vehicleColorDepth) {
this.vehicleColorDepth = vehicleColorDepth;
}
public ValueScoreData getVehicleType() {
return this.vehicleType;
}
public void setVehicleType(ValueScoreData vehicleType) {
this.vehicleType = vehicleType;
}
public ValueScoreData getVehicleBrand() {
return this.vehicleBrand;
}
public void setVehicleBrand(ValueScoreData vehicleBrand) {
this.vehicleBrand = vehicleBrand;
}
public ValueScoreData getVehicleLength() {
return this.vehicleLength;
}
public void setVehicleLength(ValueScoreData vehicleLength) {
this.vehicleLength = vehicleLength;
}
public ValueScoreData getVehicleWidth() {
return this.vehicleWidth;
}
public void setVehicleWidth(ValueScoreData vehicleWidth) {
this.vehicleWidth = vehicleWidth;
}
public ValueScoreData getVehicleHeight() {
return this.vehicleHeight;
}
public void setVehicleHeight(ValueScoreData vehicleHeight) {
this.vehicleHeight = vehicleHeight;
}
public ValueScoreData getCapDirection() {
return this.capDirection;
}
public void setCapDirection(ValueScoreData capDirection) {
this.capDirection = capDirection;
}
public ValueScoreData getDirection() {
return this.direction;
}
public void setDirection(ValueScoreData direction) {
this.direction = direction;
}
public ValueScoreData getSpeed() {
return this.speed;
}
public void setSpeed(ValueScoreData speed) {
this.speed = speed;
}
public ValueScoreData getDrivingStatusCode() {
return this.drivingStatusCode;
}
public void setDrivingStatusCode(ValueScoreData drivingStatusCode) {
this.drivingStatusCode = drivingStatusCode;
}
public ValueScoreData getVisor() {
return this.visor;
}
public void setVisor(ValueScoreData visor) {
this.visor = visor;
}
public ValueScoreData getDriverSeatBell() {
return this.driverSeatBell;
}
public void setDriverSeatBell(ValueScoreData driverSeatBell) {
this.driverSeatBell = driverSeatBell;
}
public ValueScoreData getDeputySeatBell() {
return this.deputySeatBell;
}
public void setDeputySeatBell(ValueScoreData deputySeatBell) {
this.deputySeatBell = deputySeatBell;
}
public ValueScoreData getMotTag() {
return this.motTag;
}
public void setMotTag(ValueScoreData motTag) {
this.motTag = motTag;
}
public ValueScoreData getPaper() {
return this.paper;
}
public void setPaper(ValueScoreData paper) {
this.paper = paper;
}
public ValueScoreData getPendant() {
return this.pendant;
}
public void setPendant(ValueScoreData pendant) {
this.pendant = pendant;
}
public ValueScoreData getSunroof() {
return this.sunroof;
}
public void setSunroof(ValueScoreData sunroof) {
this.sunroof = sunroof;
}
public ValueScoreData getSpareTire() {
return this.spareTire;
}
public void setSpareTire(ValueScoreData spareTire) {
this.spareTire = spareTire;
}
public ValueScoreData getRack() {
return this.rack;
}
public void setRack(ValueScoreData rack) {
this.rack = rack;
}
public ValueScoreData getDriverCall() {
return this.driverCall;
}
public void setDriverCall(ValueScoreData driverCall) {
this.driverCall = driverCall;
}
public ValueScoreData getDangerGoods() {
return this.dangerGoods;
}
public void setDangerGoods(ValueScoreData dangerGoods) {
this.dangerGoods = dangerGoods;
}
public ValueScoreData getMuckCars() {
return this.muckCars;
}
public void setMuckCars(ValueScoreData muckCars) {
this.muckCars = muckCars;
}
public ValueScoreData getLaneNo() {
return this.laneNo;
}
public void setLaneNo(ValueScoreData laneNo) {
this.laneNo = laneNo;
}
}
@@ -0,0 +1,96 @@
package cn.cloudwalk.cwos.client.event.event.structure;
import java.io.Serializable;
public class VehicleData implements Serializable {
private String trackId;
private Long captureTime;
private String vehiclePic;
private String vehiclePicPath;
private String backgroundPic;
private String backgroundPicPath;
private String qualityScore;
private String feature;
private LocationData vehicleLocation;
private VehicleAttrData vehicleAttrs;
public String getTrackId() {
return this.trackId;
}
public void setTrackId(String trackId) {
this.trackId = trackId;
}
public Long getCaptureTime() {
return this.captureTime;
}
public void setCaptureTime(Long captureTime) {
this.captureTime = captureTime;
}
public String getVehiclePic() {
return this.vehiclePic;
}
public void setVehiclePic(String vehiclePic) {
this.vehiclePic = vehiclePic;
}
public String getBackgroundPic() {
return this.backgroundPic;
}
public void setBackgroundPic(String backgroundPic) {
this.backgroundPic = backgroundPic;
}
public String getQualityScore() {
return this.qualityScore;
}
public void setQualityScore(String qualityScore) {
this.qualityScore = qualityScore;
}
public String getFeature() {
return this.feature;
}
public void setFeature(String feature) {
this.feature = feature;
}
public LocationData getVehicleLocation() {
return this.vehicleLocation;
}
public void setVehicleLocation(LocationData vehicleLocation) {
this.vehicleLocation = vehicleLocation;
}
public VehicleAttrData getVehicleAttrs() {
return this.vehicleAttrs;
}
public void setVehicleAttrs(VehicleAttrData vehicleAttrs) {
this.vehicleAttrs = vehicleAttrs;
}
public String getVehiclePicPath() {
return this.vehiclePicPath;
}
public void setVehiclePicPath(String vehiclePicPath) {
this.vehiclePicPath = vehiclePicPath;
}
public String getBackgroundPicPath() {
return this.backgroundPicPath;
}
public void setBackgroundPicPath(String backgroundPicPath) {
this.backgroundPicPath = backgroundPicPath;
}
}
@@ -0,0 +1,159 @@
package cn.cloudwalk.cwos.client.event.event.track;
import cn.cloudwalk.cwos.client.event.event.BaseEvent;
public class TrackRecordAloEvent extends BaseEvent {
private String faceId;
private Long captureTime;
private Long taskId;
private String imagePath;
private String panoramaPath;
private String feature;
private String cameraId;
private String trackId;
private String identityId;
private String reid;
private String identityIdRel;
private Integer mapX;
private Integer mapY;
private Float realX;
private Float realY;
private Long updateTime;
private Long createTime;
public String getFaceId() {
return this.faceId;
}
public void setFaceId(String faceId) {
this.faceId = faceId;
}
public Long getCaptureTime() {
return this.captureTime;
}
public void setCaptureTime(Long captureTime) {
this.captureTime = captureTime;
}
public Long getTaskId() {
return this.taskId;
}
public void setTaskId(Long taskId) {
this.taskId = taskId;
}
public String getImagePath() {
return this.imagePath;
}
public void setImagePath(String imagePath) {
this.imagePath = imagePath;
}
public String getPanoramaPath() {
return this.panoramaPath;
}
public void setPanoramaPath(String panoramaPath) {
this.panoramaPath = panoramaPath;
}
public String getFeature() {
return this.feature;
}
public void setFeature(String feature) {
this.feature = feature;
}
public String getCameraId() {
return this.cameraId;
}
public void setCameraId(String cameraId) {
this.cameraId = cameraId;
}
public String getTrackId() {
return this.trackId;
}
public void setTrackId(String trackId) {
this.trackId = trackId;
}
public String getIdentityId() {
return this.identityId;
}
public void setIdentityId(String identityId) {
this.identityId = identityId;
}
public String getReid() {
return this.reid;
}
public void setReid(String reid) {
this.reid = reid;
}
public String getIdentityIdRel() {
return this.identityIdRel;
}
public void setIdentityIdRel(String identityIdRel) {
this.identityIdRel = identityIdRel;
}
public Integer getMapX() {
return this.mapX;
}
public void setMapX(Integer mapX) {
this.mapX = mapX;
}
public Integer getMapY() {
return this.mapY;
}
public void setMapY(Integer mapY) {
this.mapY = mapY;
}
public Float getRealX() {
return this.realX;
}
public void setRealX(Float realX) {
this.realX = realX;
}
public Float getRealY() {
return this.realY;
}
public void setRealY(Float realY) {
this.realY = realY;
}
public Long getUpdateTime() {
return this.updateTime;
}
public void setUpdateTime(Long updateTime) {
this.updateTime = updateTime;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
}

Some files were not shown because too many files have changed in this diff Show More