mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-12 01:40:30 +08:00
chore: 工作区反编译与 Maven/文档/脚本同步到发布分支
- artifacts/decompiled 树与相关源码变更 - maven-cw-elevator-application 业务 docs 与 package-info - scripts 下 formatter 校验与辅助脚本 - 其他子工程/接口与发布线一并纳入版本控制 Made-with: Cursor Former-commit-id: e102e8cab64e575bcd23c9a66a598aa1892bb492
This commit is contained in:
+67
-118
@@ -13,133 +13,82 @@ 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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
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) {
|
||||
/* 56 */ if (StringUtils.isEmpty(bootstrapServers)) {
|
||||
/* 57 */ throw new ParamException("bootstrapServers 不能为空");
|
||||
private EventClient(String bootstrapServers) {
|
||||
this.bootstrapServers = bootstrapServers;
|
||||
}
|
||||
}
|
||||
/* 59 */ if (StringUtils.isEmpty(groupId)) {
|
||||
/* 60 */ return new EventClient(bootstrapServers);
|
||||
}
|
||||
/* 62 */ return new EventClient(bootstrapServers, groupId);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public EventClient init() {
|
||||
/* 71 */ this.eventService = (EventService)new EventServiceImpl(this.bootstrapServers, this.groupId);
|
||||
/* 72 */ this.init = true;
|
||||
/* 73 */ return this;
|
||||
}
|
||||
|
||||
public EventClient setWorkNum(Integer workThread) {
|
||||
/* 77 */ this.eventService.setWorkNum(workThread);
|
||||
/* 78 */ return this;
|
||||
}
|
||||
|
||||
|
||||
public EventClient setListenerClass(Class<?> cls) {
|
||||
/* 83 */ if (!EventListener.class.isAssignableFrom(cls)) {
|
||||
/* 84 */ throw new ListenerClassException("ListenerClass must implements ");
|
||||
}
|
||||
/* 86 */ this.listenerClass = cls;
|
||||
/* 87 */ this.eventService.setListenerClass(this.listenerClass);
|
||||
/* 88 */ return this;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void subEvent(EventType eventType, String serviceCode) {
|
||||
/* 99 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+22
-32
@@ -2,42 +2,32 @@ 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 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);
|
||||
public void setKafkaProperties(KafkaProperties kafkaProperties) {
|
||||
this.kafkaProperties = kafkaProperties;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+1
-3
@@ -1,7 +1,5 @@
|
||||
package cn.cloudwalk.cwos.client.event.config;
|
||||
|
||||
public class Constants {
|
||||
public static final String KAFKA_MESSAGE_STORE = "KAFKA_STORE";
|
||||
public static final String KAFKA_MESSAGE_STORE = "KAFKA_STORE";
|
||||
}
|
||||
|
||||
|
||||
|
||||
+11
-13
@@ -4,17 +4,15 @@ 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);
|
||||
void pull();
|
||||
|
||||
void pull(EventType paramEventType, EventSingleSubEventListener paramEventSingleSubEventListener);
|
||||
|
||||
void initListener();
|
||||
|
||||
void setListenerClass(Class paramClass);
|
||||
|
||||
void setWorkerNum(Integer paramInteger);
|
||||
|
||||
void addEventListener(EventType paramEventType, EventSingleSubEventListener paramEventSingleSubEventListener);
|
||||
}
|
||||
|
||||
|
||||
|
||||
+206
-229
@@ -26,243 +26,220 @@ import org.reflections.Reflections;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
public class KafkaConsumer
|
||||
implements Consumer
|
||||
{
|
||||
/* 32 */ private Logger logger = LoggerFactory.getLogger(getClass());
|
||||
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<Long, org.apache.kafka.clients.consumer.KafkaConsumer<String, String>> consumers;
|
||||
private ConcurrentHashMap<String, BaseEvent> customEvents;
|
||||
|
||||
private ConcurrentHashMap<String, BaseEvent> customEvents;
|
||||
private List<Lock> locks;
|
||||
|
||||
private List<Lock> locks;
|
||||
private Class<EventListener> listenerClass;
|
||||
|
||||
private Class<EventListener> listenerClass;
|
||||
private ConcurrentHashMap<String, EventSingleSubEventListener> eventListeners;
|
||||
|
||||
private ConcurrentHashMap<String, EventSingleSubEventListener> eventListeners;
|
||||
private EventListener eventListener;
|
||||
|
||||
private EventListener eventListener;
|
||||
private ThreadPoolExecutor threadPoolExecutor;
|
||||
|
||||
private ThreadPoolExecutor threadPoolExecutor;
|
||||
private Integer workerNum = Integer.valueOf(5);
|
||||
|
||||
/* 49 */ private Integer workerNum = Integer.valueOf(5);
|
||||
public static KafkaConsumer getInstance(KafkaProperties kafkaProperties, String topic, Integer workerNum) {
|
||||
return new KafkaConsumer(kafkaProperties, topic, workerNum);
|
||||
}
|
||||
|
||||
public static KafkaConsumer getInstance(KafkaProperties kafkaProperties, String topic, Integer workerNum) {
|
||||
/* 52 */ 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void addTopic(String topic) {
|
||||
/* 63 */ for (Map.Entry<Long, org.apache.kafka.clients.consumer.KafkaConsumer<String, String>> entry : this.consumers.entrySet()) {
|
||||
/* 64 */ ((Lock)this.locks.get(((Long)entry.getKey()).intValue() - 1)).lock();
|
||||
try {
|
||||
/* 66 */ Set<String> topics = new HashSet<>(((org.apache.kafka.clients.consumer.KafkaConsumer)entry.getValue()).subscription());
|
||||
/* 67 */ topics.add(topic);
|
||||
/* 68 */ ((org.apache.kafka.clients.consumer.KafkaConsumer)entry.getValue()).subscribe(topics);
|
||||
/* 69 */ this.logger.debug("<------添加topic:{}成功------>", topic);
|
||||
} finally {
|
||||
/* 71 */ ((Lock)this.locks.get(((Long)entry.getKey()).intValue() - 1)).unlock();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void addEventType(String eventType, BaseEvent eventClass) {
|
||||
/* 84 */ this.customEvents.putIfAbsent(eventType, eventClass);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
@SuppressWarnings("unchecked")
|
||||
public void setListenerClass(Class listenerClass) {
|
||||
/* 89 */ this.listenerClass = (Class<EventListener>) listenerClass;
|
||||
}
|
||||
|
||||
|
||||
public void addEventListener(EventType eventType, EventSingleSubEventListener eventSingleSubEventListener) {
|
||||
/* 94 */ this.eventListeners.put(eventType.getCode(), eventSingleSubEventListener);
|
||||
}
|
||||
|
||||
public EventListener getEventListener() {
|
||||
/* 98 */ 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+22
-44
@@ -3,54 +3,32 @@ 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 class AntiepidemicAlarmEvent
|
||||
extends BaseEvent
|
||||
{
|
||||
private String tempPanoramaImageUrl;
|
||||
private String capturePanoramaImageUrl;
|
||||
private List<DeviceAlarm> models;
|
||||
|
||||
public String getTempPanoramaImageUrl() {
|
||||
return this.tempPanoramaImageUrl;
|
||||
public void setModels(List<DeviceAlarm> models) {
|
||||
this.models = models;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+71
-116
@@ -2,140 +2,95 @@ 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 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() {
|
||||
/* 61 */ return this.messageId;
|
||||
public void setLogId(String logId) {
|
||||
this.logId = logId;
|
||||
}
|
||||
}
|
||||
|
||||
public void setMessageId(String messageId) {
|
||||
/* 65 */ this.messageId = messageId;
|
||||
}
|
||||
|
||||
public String getEventType() {
|
||||
/* 69 */ return this.eventType;
|
||||
}
|
||||
|
||||
public void setEventType(String eventType) {
|
||||
/* 73 */ this.eventType = eventType;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
/* 77 */ return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
/* 81 */ this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public Map<String, Object> getExtend() {
|
||||
/* 85 */ return this.extend;
|
||||
}
|
||||
|
||||
public void setExtend(Map<String, Object> extend) {
|
||||
/* 89 */ this.extend = extend;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 93 */ return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 97 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+22
-41
@@ -3,51 +3,32 @@ 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 class BodyCaptureEvent
|
||||
extends BaseEvent
|
||||
{
|
||||
private List<BodyReidPerson> person;
|
||||
private String deviceName;
|
||||
private int flag;
|
||||
|
||||
public List<BodyReidPerson> getPerson() {
|
||||
return this.person;
|
||||
public void setFlag(int flag) {
|
||||
this.flag = flag;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+22
-44
@@ -3,54 +3,32 @@ 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 class BodyKeyPointsEvent
|
||||
extends BaseEvent
|
||||
{
|
||||
private String imageId;
|
||||
private String imagePath;
|
||||
private List<BodyPose> bodyPoses;
|
||||
|
||||
public String getImageId() {
|
||||
return this.imageId;
|
||||
public void setBodyPoses(List<BodyPose> bodyPoses) {
|
||||
this.bodyPoses = bodyPoses;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+58
-67
@@ -2,77 +2,68 @@ 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 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 String getImageId() {
|
||||
return this.imageId;
|
||||
}
|
||||
|
||||
public long getCaptureTime() {
|
||||
return this.captureTime;
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+22
-41
@@ -3,51 +3,32 @@ 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 class ClusterResultEvent
|
||||
extends BaseEvent
|
||||
{
|
||||
private List<ClusterResultData> data;
|
||||
private String taskId;
|
||||
private Short state;
|
||||
|
||||
public List<ClusterResultData> getData() {
|
||||
return this.data;
|
||||
public void setState(Short state) {
|
||||
this.state = state;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+13
-28
@@ -1,36 +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 enum CommonTopic
|
||||
{
|
||||
DEAD("dead"),
|
||||
|
||||
|
||||
|
||||
|
||||
ALL("all");
|
||||
private String topic;
|
||||
|
||||
CommonTopic(String topic) {
|
||||
this.topic = topic;
|
||||
public void setTopic(String topic) {
|
||||
this.topic = topic;
|
||||
}
|
||||
}
|
||||
|
||||
public String getTopic() {
|
||||
return this.topic;
|
||||
}
|
||||
|
||||
public void setTopic(String topic) {
|
||||
this.topic = topic;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+58
-67
@@ -1,76 +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 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 long getCaptureTime() {
|
||||
return this.captureTime;
|
||||
}
|
||||
|
||||
public String getDeviceName() {
|
||||
return this.deviceName;
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+1
-3
@@ -1,7 +1,5 @@
|
||||
package cn.cloudwalk.cwos.client.event.event;
|
||||
|
||||
public abstract class CustomEvent extends BaseEvent {
|
||||
public abstract String getTopic();
|
||||
public abstract String getTopic();
|
||||
}
|
||||
|
||||
|
||||
|
||||
+9
-12
@@ -1,16 +1,13 @@
|
||||
package cn.cloudwalk.cwos.client.event.event;
|
||||
|
||||
public class DeviceDeleteEvent
|
||||
extends BaseEvent {
|
||||
private Long changeTime;
|
||||
public class DeviceDeleteEvent extends BaseEvent {
|
||||
private Long changeTime;
|
||||
|
||||
public Long getChangeTime() {
|
||||
/* 8 */ return this.changeTime;
|
||||
public Long getChangeTime() {
|
||||
return this.changeTime;
|
||||
}
|
||||
|
||||
public void setChangeTime(Long changeTime) {
|
||||
this.changeTime = changeTime;
|
||||
}
|
||||
}
|
||||
|
||||
public void setChangeTime(Long changeTime) {
|
||||
this.changeTime = changeTime;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+15
-25
@@ -2,33 +2,23 @@ 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 class DeviceStateChangeEvent
|
||||
extends BaseEvent
|
||||
{
|
||||
private StateChange stateChange;
|
||||
private Long changeTime;
|
||||
|
||||
public StateChange getStateChange() {
|
||||
return this.stateChange;
|
||||
public void setChangeTime(Long changeTime) {
|
||||
this.changeTime = changeTime;
|
||||
}
|
||||
}
|
||||
|
||||
public void setStateChange(StateChange stateChange) {
|
||||
this.stateChange = stateChange;
|
||||
}
|
||||
|
||||
public Long getChangeTime() {
|
||||
return this.changeTime;
|
||||
}
|
||||
|
||||
public void setChangeTime(Long changeTime) {
|
||||
this.changeTime = changeTime;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+62
-175
@@ -12,224 +12,111 @@ import cn.cloudwalk.cwos.client.event.event.structure.StructurePersonCaptureEven
|
||||
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"),
|
||||
|
||||
public enum EventType
|
||||
{
|
||||
/* 27 */ BODY_CAPTURE("BODY_CAPTURE", new BodyCaptureEvent(), "BODY_CAPTURE_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"),
|
||||
|
||||
/* 32 */ FACE_CAPTURE("FACE_CAPTURE", new FaceCaptureEvent(), "FACE_CAPTURE_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"),
|
||||
|
||||
/* 37 */ FACE_FEATURE("FACE_FEATURE", new FaceFeatureEvent(), "FACE_FEATURE_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"),
|
||||
|
||||
/* 42 */ PERSON_RECORD_UPLOAD("PERSON_RECORD_UPLOAD", new PersonRecordUploadEvent(), "PERSON_RECORD_UPLOAD_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"),
|
||||
|
||||
/* 47 */ CONTROL_ALARM("CONTROL_ALARM", new ControlAlarmEvent(), "CONTROL_ALARM_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"),
|
||||
|
||||
/* 52 */ FACE_TRACK("FACE_TRACK", new FaceTrackEvent(), "FACE_TRACK_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"),
|
||||
|
||||
/* 57 */ BODY_TRACK("BODY_TRACK", new BodyTrackEvent(), "BODY_TRACK_TOPIC"),
|
||||
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"),
|
||||
|
||||
/* 62 */ PERSON_ARRIVAL("PERSON_ARRIVAL", new PersonArrivalEvent(), "PERSON_ARRIVAL_TOPIC"),
|
||||
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;
|
||||
|
||||
/* 67 */ PERSON_LIBRARY("PERSON_LIBRARY", new PersonLibraryEvent(), "PERSON_LIBRARY_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;
|
||||
}
|
||||
|
||||
|
||||
/* 72 */ HEAT_AVG_STATS("HEAT_AVG_STATS", new HeatAvgStatsEvent(), "HEAT_AVG_STATS_TOPIC"),
|
||||
|
||||
|
||||
|
||||
|
||||
/* 77 */ FACE_RECOG_TRACK("FACE_RECOG_TRACK", new FaceRecogTrackEvent(), "FACE_RECOG_TRACK_TOPIC"),
|
||||
|
||||
|
||||
|
||||
|
||||
/* 82 */ PICTURE_RESULT("PICTURE_RESULT", new PictureResultEvent(), "PICTURE_RESULT_TOPIC"),
|
||||
|
||||
|
||||
|
||||
|
||||
/* 87 */ PANORAMA_UPLOAD("PANORAMA_UPLOAD", new PanoramaUploadEvent(), "PANORAMA_UPLOAD_TOPIC"),
|
||||
|
||||
|
||||
|
||||
|
||||
/* 92 */ ROI_DEVICE_DATA_UPLOAD("ROI_DEVICE_DATA_UPLOAD", new RoiDeviceDataUploadEvent(), "ROI_DEVICE_DATA_UPLOAD_TOPIC"),
|
||||
|
||||
|
||||
|
||||
|
||||
/* 97 */ 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 getTopic() {
|
||||
return this.topic;
|
||||
}
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
|
||||
public BaseEvent getEventClass() {
|
||||
return this.eventClass;
|
||||
}
|
||||
|
||||
public String getTopic() {
|
||||
return this.topic;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+77
-94
@@ -1,111 +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 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 Long getExtractTime() {
|
||||
return this.extractTime;
|
||||
}
|
||||
|
||||
public String getCorpId() {
|
||||
/* 31 */ return this.corpId;
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
public void setCorpId(String corpId) {
|
||||
/* 35 */ this.corpId = corpId;
|
||||
}
|
||||
|
||||
public String getOrgId() {
|
||||
/* 39 */ return this.orgId;
|
||||
}
|
||||
|
||||
public void setOrgId(String orgId) {
|
||||
/* 43 */ this.orgId = orgId;
|
||||
}
|
||||
|
||||
public String getTaskId() {
|
||||
/* 47 */ return this.taskId;
|
||||
}
|
||||
|
||||
public void setTaskId(String taskId) {
|
||||
/* 51 */ this.taskId = taskId;
|
||||
}
|
||||
|
||||
public String getTaskName() {
|
||||
/* 55 */ return this.taskName;
|
||||
}
|
||||
|
||||
public void setTaskName(String taskName) {
|
||||
/* 59 */ this.taskName = taskName;
|
||||
}
|
||||
|
||||
public String getImg() {
|
||||
/* 63 */ return this.img;
|
||||
}
|
||||
|
||||
public void setImg(String img) {
|
||||
/* 67 */ this.img = img;
|
||||
}
|
||||
|
||||
public String getImgUrl() {
|
||||
/* 71 */ return this.imgUrl;
|
||||
}
|
||||
|
||||
public void setImgUrl(String imgUrl) {
|
||||
/* 75 */ this.imgUrl = imgUrl;
|
||||
}
|
||||
|
||||
public Long getExtractTime() {
|
||||
/* 79 */ return this.extractTime;
|
||||
}
|
||||
|
||||
public void setExtractTime(Long extractTime) {
|
||||
/* 83 */ this.extractTime = extractTime;
|
||||
}
|
||||
|
||||
public String getExt1() {
|
||||
/* 87 */ return this.ext1;
|
||||
}
|
||||
|
||||
public void setExt1(String ext1) {
|
||||
/* 91 */ this.ext1 = ext1;
|
||||
}
|
||||
|
||||
public String getExt2() {
|
||||
/* 95 */ return this.ext2;
|
||||
}
|
||||
|
||||
public void setExt2(String ext2) {
|
||||
/* 99 */ this.ext2 = ext2;
|
||||
}
|
||||
|
||||
public String getExt3() {
|
||||
return this.ext3;
|
||||
}
|
||||
|
||||
public void setExt3(String ext3) {
|
||||
this.ext3 = ext3;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+50
-90
@@ -4,108 +4,68 @@ 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 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() {
|
||||
/* 55 */ return this.snapType;
|
||||
public void setFace(List<FaceCapture> face) {
|
||||
this.face = face;
|
||||
}
|
||||
}
|
||||
|
||||
public void setSnapType(String snapType) {
|
||||
/* 59 */ this.snapType = snapType;
|
||||
}
|
||||
|
||||
public String getImagePath() {
|
||||
/* 63 */ return this.imagePath;
|
||||
}
|
||||
|
||||
public void setImagePath(String imagePath) {
|
||||
/* 67 */ this.imagePath = imagePath;
|
||||
}
|
||||
|
||||
public String getSubDeviceId() {
|
||||
/* 71 */ return this.subDeviceId;
|
||||
}
|
||||
|
||||
public void setSubDeviceId(String subDeviceId) {
|
||||
/* 75 */ this.subDeviceId = subDeviceId;
|
||||
}
|
||||
|
||||
public int getTimeConsuming() {
|
||||
/* 79 */ return this.timeConsuming;
|
||||
}
|
||||
|
||||
public void setTimeConsuming(int timeConsuming) {
|
||||
/* 83 */ this.timeConsuming = timeConsuming;
|
||||
}
|
||||
|
||||
public int getFaceNum() {
|
||||
/* 87 */ return this.faceNum;
|
||||
}
|
||||
|
||||
public void setFaceNum(int faceNum) {
|
||||
/* 91 */ this.faceNum = faceNum;
|
||||
}
|
||||
|
||||
public Panorama getPanorama() {
|
||||
/* 95 */ return this.panorama;
|
||||
}
|
||||
|
||||
public void setPanorama(Panorama panorama) {
|
||||
/* 99 */ this.panorama = panorama;
|
||||
}
|
||||
|
||||
public List<FaceCapture> getFace() {
|
||||
return this.face;
|
||||
}
|
||||
|
||||
public void setFace(List<FaceCapture> face) {
|
||||
this.face = face;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+29
-40
@@ -4,52 +4,41 @@ 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 class FaceFeatureEvent
|
||||
extends BaseEvent
|
||||
{
|
||||
private String subDeviceId;
|
||||
private int timeConsuming;
|
||||
private Panorama panorama;
|
||||
private List<FaceFeature> face;
|
||||
public List<FaceFeature> getFace() {
|
||||
return this.face;
|
||||
}
|
||||
|
||||
public String getSubDeviceId() {
|
||||
return this.subDeviceId;
|
||||
public void setFace(List<FaceFeature> face) {
|
||||
this.face = face;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+66
-76
@@ -4,87 +4,77 @@ 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 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 void setImageId(String imageId) {
|
||||
this.imageId = imageId;
|
||||
}
|
||||
|
||||
public String getDeviceName() {
|
||||
return this.deviceName;
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+58
-67
@@ -2,77 +2,68 @@ 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 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 String getImageId() {
|
||||
return this.imageId;
|
||||
}
|
||||
|
||||
public long getCaptureTime() {
|
||||
return this.captureTime;
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+22
-43
@@ -1,52 +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 class FileNoticeEvent
|
||||
extends BaseEvent
|
||||
{
|
||||
private String fileId;
|
||||
private String filePath;
|
||||
private String noticeType;
|
||||
|
||||
public String getFileId() {
|
||||
return this.fileId;
|
||||
public void setNoticeType(String noticeType) {
|
||||
this.noticeType = noticeType;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+2
-3
@@ -1,5 +1,4 @@
|
||||
package cn.cloudwalk.cwos.client.event.event;
|
||||
|
||||
public class HeadShoulderDyEvent extends RoiDeviceDataUploadEvent {}
|
||||
|
||||
|
||||
public class HeadShoulderDyEvent extends RoiDeviceDataUploadEvent {
|
||||
}
|
||||
|
||||
+15
-32
@@ -1,39 +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 class HeadshoulderEvent
|
||||
extends BaseEvent
|
||||
{
|
||||
private int headNum;
|
||||
private Location location;
|
||||
|
||||
public int getHeadNum() {
|
||||
return this.headNum;
|
||||
public void setLocation(Location location) {
|
||||
this.location = location;
|
||||
}
|
||||
}
|
||||
|
||||
public void setHeadNum(int headNum) {
|
||||
this.headNum = headNum;
|
||||
}
|
||||
|
||||
public Location getLocation() {
|
||||
return this.location;
|
||||
}
|
||||
|
||||
public void setLocation(Location location) {
|
||||
this.location = location;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+78
-132
@@ -1,157 +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 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() {
|
||||
/* 69 */ return this.captureId;
|
||||
public void setAreaPersonPoints(String areaPersonPoints) {
|
||||
this.areaPersonPoints = areaPersonPoints;
|
||||
}
|
||||
}
|
||||
|
||||
public void setCaptureId(String captureId) {
|
||||
/* 73 */ this.captureId = captureId;
|
||||
}
|
||||
|
||||
public String getRoiId() {
|
||||
/* 77 */ return this.roiId;
|
||||
}
|
||||
|
||||
public void setRoiId(String roiId) {
|
||||
/* 81 */ this.roiId = roiId;
|
||||
}
|
||||
|
||||
public String getStoreId() {
|
||||
/* 85 */ return this.storeId;
|
||||
}
|
||||
|
||||
public void setStoreId(String storeId) {
|
||||
/* 89 */ this.storeId = storeId;
|
||||
}
|
||||
|
||||
public String getAreaId() {
|
||||
/* 93 */ return this.areaId;
|
||||
}
|
||||
|
||||
public void setAreaId(String areaId) {
|
||||
/* 97 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+57
-98
@@ -1,117 +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 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() {
|
||||
/* 53 */ return this.x;
|
||||
public void setFaceHeight(Integer faceHeight) {
|
||||
this.faceHeight = faceHeight;
|
||||
}
|
||||
}
|
||||
|
||||
public void setX(int x) {
|
||||
/* 57 */ this.x = x;
|
||||
}
|
||||
|
||||
public int getY() {
|
||||
/* 61 */ return this.y;
|
||||
}
|
||||
|
||||
public void setY(int y) {
|
||||
/* 65 */ this.y = y;
|
||||
}
|
||||
|
||||
public int getHeight() {
|
||||
/* 69 */ return this.height;
|
||||
}
|
||||
|
||||
public void setHeight(int height) {
|
||||
/* 73 */ this.height = height;
|
||||
}
|
||||
|
||||
public int getWidth() {
|
||||
/* 77 */ return this.width;
|
||||
}
|
||||
|
||||
public void setWidth(int width) {
|
||||
/* 81 */ this.width = width;
|
||||
}
|
||||
|
||||
public Integer getFaceX() {
|
||||
/* 85 */ return this.faceX;
|
||||
}
|
||||
|
||||
public void setFaceX(Integer faceX) {
|
||||
/* 89 */ this.faceX = faceX;
|
||||
}
|
||||
|
||||
public Integer getFaceY() {
|
||||
/* 93 */ return this.faceY;
|
||||
}
|
||||
|
||||
public void setFaceY(Integer faceY) {
|
||||
/* 97 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+50
-85
@@ -1,102 +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 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 setJsonData(String jsonData) {
|
||||
this.jsonData = jsonData;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+57
-102
@@ -1,121 +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 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() {
|
||||
/* 57 */ return this.recordResult;
|
||||
public void setPanoramaImagePath(String panoramaImagePath) {
|
||||
this.panoramaImagePath = panoramaImagePath;
|
||||
}
|
||||
}
|
||||
|
||||
public void setRecordResult(String recordResult) {
|
||||
/* 61 */ this.recordResult = recordResult;
|
||||
}
|
||||
|
||||
public String getSubDeviceId() {
|
||||
/* 65 */ return this.subDeviceId;
|
||||
}
|
||||
|
||||
public void setSubDeviceId(String subDeviceId) {
|
||||
/* 69 */ this.subDeviceId = subDeviceId;
|
||||
}
|
||||
|
||||
public String getOpenDoorType() {
|
||||
/* 73 */ return this.openDoorType;
|
||||
}
|
||||
|
||||
public void setOpenDoorType(String openDoorType) {
|
||||
/* 77 */ this.openDoorType = openDoorType;
|
||||
}
|
||||
|
||||
public String getRecognitionNo() {
|
||||
/* 81 */ return this.recognitionNo;
|
||||
}
|
||||
|
||||
public void setRecognitionNo(String recognitionNo) {
|
||||
/* 85 */ this.recognitionNo = recognitionNo;
|
||||
}
|
||||
|
||||
public Long getRecognitionTime() {
|
||||
/* 89 */ return this.recognitionTime;
|
||||
}
|
||||
|
||||
public void setRecognitionTime(Long recognitionTime) {
|
||||
/* 93 */ this.recognitionTime = recognitionTime;
|
||||
}
|
||||
|
||||
public String getRecognitionFaceId() {
|
||||
/* 97 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+78
-110
@@ -1,135 +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 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() {
|
||||
/* 47 */ return this.personId;
|
||||
public void setPanoramaImageUrl(String panoramaImageUrl) {
|
||||
this.panoramaImageUrl = panoramaImageUrl;
|
||||
}
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
/* 51 */ this.personId = personId;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
/* 55 */ return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
/* 59 */ this.personName = personName;
|
||||
}
|
||||
|
||||
public Long getOrgId() {
|
||||
/* 63 */ return this.orgId;
|
||||
}
|
||||
|
||||
public void setOrgId(Long orgId) {
|
||||
/* 67 */ this.orgId = orgId;
|
||||
}
|
||||
|
||||
public Long getSignTime() {
|
||||
/* 71 */ return this.signTime;
|
||||
}
|
||||
|
||||
public void setSignTime(Long signTime) {
|
||||
/* 75 */ this.signTime = signTime;
|
||||
}
|
||||
|
||||
public Integer getTumoverType() {
|
||||
/* 79 */ return this.tumoverType;
|
||||
}
|
||||
|
||||
public void setTumoverType(Integer tumoverType) {
|
||||
/* 83 */ this.tumoverType = tumoverType;
|
||||
}
|
||||
|
||||
public String getOrgName() {
|
||||
/* 87 */ return this.orgName;
|
||||
}
|
||||
|
||||
public void setOrgName(String orgName) {
|
||||
/* 91 */ this.orgName = orgName;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
/* 95 */ return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
/* 99 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+15
-36
@@ -3,44 +3,23 @@ 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 class PanoramaUploadEvent
|
||||
extends BaseEvent
|
||||
{
|
||||
private String deviceId;
|
||||
private List<PanoramaDeviceData> deviceData;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
public void setDeviceData(List<PanoramaDeviceData> deviceData) {
|
||||
this.deviceData = deviceData;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public List<PanoramaDeviceData> getDeviceData() {
|
||||
return this.deviceData;
|
||||
}
|
||||
|
||||
public void setDeviceData(List<PanoramaDeviceData> deviceData) {
|
||||
this.deviceData = deviceData;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+194
-299
@@ -1,325 +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 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 setStoreName(String storeName) {
|
||||
this.storeName = storeName;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+85
-138
@@ -2,166 +2,113 @@ 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 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() {
|
||||
/* 73 */ return this.subDeviceId;
|
||||
public void setTempImagePath(String tempImagePath) {
|
||||
this.tempImagePath = tempImagePath;
|
||||
}
|
||||
}
|
||||
|
||||
public void setSubDeviceId(String subDeviceId) {
|
||||
/* 77 */ this.subDeviceId = subDeviceId;
|
||||
}
|
||||
|
||||
|
||||
public String getSpotImagePath() {
|
||||
/* 82 */ return this.spotImagePath;
|
||||
}
|
||||
|
||||
public void setSpotImagePath(String spotImagePath) {
|
||||
/* 86 */ this.spotImagePath = spotImagePath;
|
||||
}
|
||||
|
||||
public String getPanoramaImagePath() {
|
||||
/* 90 */ return this.panoramaImagePath;
|
||||
}
|
||||
|
||||
public void setPanoramaImagePath(String panoramaImagePath) {
|
||||
/* 94 */ this.panoramaImagePath = panoramaImagePath;
|
||||
}
|
||||
|
||||
public CardData getCardData() {
|
||||
/* 98 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+71
-121
@@ -3,145 +3,95 @@ 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 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() {
|
||||
/* 67 */ return this.subDeviceId;
|
||||
public void setRecogFaceList(List<FaceLibrary> recogFaceList) {
|
||||
this.recogFaceList = recogFaceList;
|
||||
}
|
||||
}
|
||||
|
||||
public void setSubDeviceId(String subDeviceId) {
|
||||
/* 71 */ this.subDeviceId = subDeviceId;
|
||||
}
|
||||
|
||||
public String getCaptureId() {
|
||||
/* 75 */ return this.captureId;
|
||||
}
|
||||
|
||||
public void setCaptureId(String captureId) {
|
||||
/* 79 */ this.captureId = captureId;
|
||||
}
|
||||
|
||||
public Long getCaptureTime() {
|
||||
/* 83 */ return this.captureTime;
|
||||
}
|
||||
|
||||
public void setCaptureTime(Long captureTime) {
|
||||
/* 87 */ this.captureTime = captureTime;
|
||||
}
|
||||
|
||||
public String getCaptureUrl() {
|
||||
/* 91 */ return this.captureUrl;
|
||||
}
|
||||
|
||||
public void setCaptureUrl(String captureUrl) {
|
||||
/* 95 */ this.captureUrl = captureUrl;
|
||||
}
|
||||
|
||||
public String getPanoramaImageUrl() {
|
||||
/* 99 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+43
-81
@@ -4,97 +4,59 @@ 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 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 setFaces(List<Face> faces) {
|
||||
this.faces = faces;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+15
-27
@@ -3,35 +3,23 @@ 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 class PictureResultEvent
|
||||
extends BaseEvent
|
||||
{
|
||||
private String subDeviceId;
|
||||
private List<ImageData> imageData;
|
||||
|
||||
public String getSubDeviceId() {
|
||||
return this.subDeviceId;
|
||||
public void setImageData(List<ImageData> imageData) {
|
||||
this.imageData = imageData;
|
||||
}
|
||||
}
|
||||
|
||||
public void setSubDeviceId(String subDeviceId) {
|
||||
this.subDeviceId = subDeviceId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public List<ImageData> getImageData() {
|
||||
return this.imageData;
|
||||
}
|
||||
|
||||
public void setImageData(List<ImageData> imageData) {
|
||||
this.imageData = imageData;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+8
-24
@@ -3,30 +3,14 @@ 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 class RoiConfEvent
|
||||
extends BaseEvent
|
||||
{
|
||||
private List<RoiDeviceConfData> deviceData;
|
||||
|
||||
public List<RoiDeviceConfData> getDeviceData() {
|
||||
return this.deviceData;
|
||||
public void setDeviceData(List<RoiDeviceConfData> deviceData) {
|
||||
this.deviceData = deviceData;
|
||||
}
|
||||
}
|
||||
|
||||
public void setDeviceData(List<RoiDeviceConfData> deviceData) {
|
||||
this.deviceData = deviceData;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+61
-78
@@ -4,94 +4,77 @@ 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 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 Long getHeadCount() {
|
||||
return this.headCount;
|
||||
}
|
||||
|
||||
public String getSubDeviceId() {
|
||||
return this.subDeviceId;
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+22
-48
@@ -3,58 +3,32 @@ 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 class RoiDeviceRegisterEvent
|
||||
extends BaseEvent
|
||||
{
|
||||
private String deviceId;
|
||||
private Integer count;
|
||||
private List<RoiDeviceRegisterData> deviceData;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
public void setDeviceData(List<RoiDeviceRegisterData> deviceData) {
|
||||
this.deviceData = deviceData;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+131
-212
@@ -2,221 +2,140 @@ 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 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 setGroupId(String groupId) {
|
||||
this.groupId = groupId;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+29
-51
@@ -1,66 +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");
|
||||
|
||||
public enum OpenDoorTypeEnum
|
||||
{
|
||||
FACE("FACE"),
|
||||
private String type;
|
||||
|
||||
OpenDoorTypeEnum(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
PASSWORD("PASSWORD"),
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public static OpenDoorTypeEnum getType(String type) {
|
||||
OpenDoorTypeEnum[] var1 = values();
|
||||
int var2 = var1.length;
|
||||
|
||||
|
||||
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;
|
||||
for (int var3 = 0; var3 < var2; var3++) {
|
||||
OpenDoorTypeEnum its = var1[var3];
|
||||
if (its.type == type) {
|
||||
return its;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+2
-12
@@ -1,15 +1,5 @@
|
||||
package cn.cloudwalk.cwos.client.event.event.enums;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public enum StateChange
|
||||
{
|
||||
ONLINE,
|
||||
OFFLINE;
|
||||
public enum StateChange {
|
||||
ONLINE, OFFLINE;
|
||||
}
|
||||
|
||||
|
||||
|
||||
+64
-108
@@ -2,130 +2,86 @@ 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 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() {
|
||||
/* 59 */ return this.channelId;
|
||||
public void setStoreId(String storeId) {
|
||||
this.storeId = storeId;
|
||||
}
|
||||
}
|
||||
|
||||
public void setChannelId(String channelId) {
|
||||
/* 63 */ this.channelId = channelId;
|
||||
}
|
||||
|
||||
public String getChannelName() {
|
||||
/* 67 */ return this.channelName;
|
||||
}
|
||||
|
||||
public void setChannelName(String channelName) {
|
||||
/* 71 */ this.channelName = channelName;
|
||||
}
|
||||
|
||||
public String getCustomerName() {
|
||||
/* 75 */ return this.customerName;
|
||||
}
|
||||
|
||||
public void setCustomerName(String customerName) {
|
||||
/* 79 */ this.customerName = customerName;
|
||||
}
|
||||
|
||||
public String getCustomerPhone() {
|
||||
/* 83 */ return this.customerPhone;
|
||||
}
|
||||
|
||||
public void setCustomerPhone(String customerPhone) {
|
||||
/* 87 */ this.customerPhone = customerPhone;
|
||||
}
|
||||
|
||||
public String getPreparationName() {
|
||||
/* 91 */ return this.preparationName;
|
||||
}
|
||||
|
||||
public void setPreparationName(String preparationName) {
|
||||
/* 95 */ this.preparationName = preparationName;
|
||||
}
|
||||
|
||||
public String getPreparationPhone() {
|
||||
/* 99 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+22
-42
@@ -1,51 +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 class Customer
|
||||
{
|
||||
private String customerName;
|
||||
private String customerPhone;
|
||||
private String customerIdcard;
|
||||
|
||||
public String getCustomerName() {
|
||||
return this.customerName;
|
||||
public void setCustomerIdcard(String customerIdcard) {
|
||||
this.customerIdcard = customerIdcard;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+71
-120
@@ -2,144 +2,95 @@ 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 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() {
|
||||
/* 63 */ return this.userId;
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
}
|
||||
|
||||
public void setUserId(String userId) {
|
||||
/* 67 */ this.userId = userId;
|
||||
}
|
||||
|
||||
public String getAlarmStragetyId() {
|
||||
/* 71 */ return this.alarmStragetyId;
|
||||
}
|
||||
|
||||
public void setAlarmStragetyId(String alarmStragetyId) {
|
||||
/* 75 */ this.alarmStragetyId = alarmStragetyId;
|
||||
}
|
||||
|
||||
public int getAlarmStragetyType() {
|
||||
/* 79 */ return this.alarmStragetyType;
|
||||
}
|
||||
|
||||
public void setAlarmStragetyType(int alarmStragetyType) {
|
||||
/* 83 */ this.alarmStragetyType = alarmStragetyType;
|
||||
}
|
||||
|
||||
public int getAlarmType() {
|
||||
/* 87 */ return this.alarmType;
|
||||
}
|
||||
|
||||
public void setAlarmType(int alarmType) {
|
||||
/* 91 */ this.alarmType = alarmType;
|
||||
}
|
||||
|
||||
public int getAlarmSetValue() {
|
||||
/* 95 */ return this.alarmSetValue;
|
||||
}
|
||||
|
||||
public void setAlarmSetValue(int alarmSetValue) {
|
||||
/* 99 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+64
-105
@@ -2,127 +2,86 @@ 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 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() {
|
||||
/* 54 */ return this.userId;
|
||||
public void setPernoIn(int pernoIn) {
|
||||
this.pernoIn = pernoIn;
|
||||
}
|
||||
}
|
||||
|
||||
public void setUserId(String userId) {
|
||||
/* 58 */ this.userId = userId;
|
||||
}
|
||||
|
||||
public int getPerno() {
|
||||
/* 62 */ return this.perno;
|
||||
}
|
||||
|
||||
public void setPerno(int perno) {
|
||||
/* 66 */ this.perno = perno;
|
||||
}
|
||||
|
||||
public long getStatsTime() {
|
||||
/* 70 */ return this.statsTime;
|
||||
}
|
||||
|
||||
public void setStatsTime(long statsTime) {
|
||||
/* 74 */ this.statsTime = statsTime;
|
||||
}
|
||||
|
||||
public int getAreaType() {
|
||||
/* 78 */ return this.areaType;
|
||||
}
|
||||
|
||||
public void setAreaType(int areaType) {
|
||||
/* 82 */ this.areaType = areaType;
|
||||
}
|
||||
|
||||
public String getAreaId() {
|
||||
/* 86 */ return this.areaId;
|
||||
}
|
||||
|
||||
public void setAreaId(String areaId) {
|
||||
/* 90 */ this.areaId = areaId;
|
||||
}
|
||||
|
||||
public String getStoreId() {
|
||||
/* 94 */ return this.storeId;
|
||||
}
|
||||
|
||||
public void setStoreId(String storeId) {
|
||||
/* 98 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+50
-84
@@ -3,102 +3,68 @@ 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 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() {
|
||||
/* 48 */ return this.dealId;
|
||||
public void setCustomerList(List<Customer> customerList) {
|
||||
this.customerList = customerList;
|
||||
}
|
||||
}
|
||||
|
||||
public void setDealId(String dealId) {
|
||||
/* 52 */ this.dealId = dealId;
|
||||
}
|
||||
|
||||
public String getDealRoom() {
|
||||
/* 56 */ return this.dealRoom;
|
||||
}
|
||||
|
||||
public void setDealRoom(String dealRoom) {
|
||||
/* 60 */ this.dealRoom = dealRoom;
|
||||
}
|
||||
|
||||
public Long getDealTime() {
|
||||
/* 64 */ return this.dealTime;
|
||||
}
|
||||
|
||||
public void setDealTime(Long dealTime) {
|
||||
/* 68 */ this.dealTime = dealTime;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
/* 72 */ return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
/* 76 */ this.status = status;
|
||||
}
|
||||
|
||||
public String getConsultant() {
|
||||
/* 80 */ return this.consultant;
|
||||
}
|
||||
|
||||
public void setConsultant(String consultant) {
|
||||
/* 84 */ this.consultant = consultant;
|
||||
}
|
||||
|
||||
public String getStoreId() {
|
||||
/* 88 */ return this.storeId;
|
||||
}
|
||||
|
||||
public void setStoreId(String storeId) {
|
||||
/* 92 */ this.storeId = storeId;
|
||||
}
|
||||
|
||||
public List<Customer> getCustomerList() {
|
||||
/* 96 */ return this.customerList;
|
||||
}
|
||||
|
||||
public void setCustomerList(List<Customer> customerList) {
|
||||
this.customerList = customerList;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+22
-42
@@ -1,51 +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 class Angel
|
||||
{
|
||||
private Float pitch;
|
||||
private Float yaw;
|
||||
private Float roll;
|
||||
|
||||
public Float getPitch() {
|
||||
return this.pitch;
|
||||
public void setRoll(Float roll) {
|
||||
this.roll = roll;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+107
-117
@@ -2,129 +2,119 @@ 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 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 float getKeyptScore() {
|
||||
return this.keyptScore;
|
||||
}
|
||||
|
||||
public int getHandUpLeft() {
|
||||
/* 23 */ return this.handUpLeft;
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void setHandUpLeft(int handUpLeft) {
|
||||
/* 27 */ this.handUpLeft = handUpLeft;
|
||||
}
|
||||
|
||||
public int getHandUpRight() {
|
||||
/* 31 */ return this.handUpRight;
|
||||
}
|
||||
|
||||
public void setHandUpRight(int handUpRight) {
|
||||
/* 35 */ this.handUpRight = handUpRight;
|
||||
}
|
||||
|
||||
public int getTumble() {
|
||||
/* 39 */ return this.tumble;
|
||||
}
|
||||
|
||||
public void setTumble(int tumble) {
|
||||
/* 43 */ this.tumble = tumble;
|
||||
}
|
||||
|
||||
public float getKeyptScore() {
|
||||
/* 47 */ return this.keyptScore;
|
||||
}
|
||||
|
||||
public void setKeyptScore(float keyptScore) {
|
||||
/* 51 */ this.keyptScore = keyptScore;
|
||||
}
|
||||
|
||||
public int getKeyptNum() {
|
||||
/* 55 */ return this.keyptNum;
|
||||
}
|
||||
|
||||
public void setKeyptNum(int keyptNum) {
|
||||
/* 59 */ this.keyptNum = keyptNum;
|
||||
}
|
||||
|
||||
public List<KeyPoint> getKeyPoints() {
|
||||
/* 63 */ return this.keyPoints;
|
||||
}
|
||||
|
||||
public void setKeyPoints(List<KeyPoint> keyPoints) {
|
||||
/* 67 */ this.keyPoints = keyPoints;
|
||||
}
|
||||
|
||||
public List<Line> getLines() {
|
||||
/* 71 */ return this.lines;
|
||||
}
|
||||
|
||||
public void setLines(List<Line> lines) {
|
||||
/* 75 */ this.lines = lines;
|
||||
}
|
||||
|
||||
public static class KeyPoint {
|
||||
private int x;
|
||||
private int y;
|
||||
private float score;
|
||||
|
||||
public int getX() {
|
||||
/* 84 */ return this.x;
|
||||
}
|
||||
|
||||
public void setX(int x) {
|
||||
/* 88 */ this.x = x;
|
||||
}
|
||||
|
||||
public int getY() {
|
||||
/* 92 */ return this.y;
|
||||
}
|
||||
|
||||
public void setY(int y) {
|
||||
/* 96 */ 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+78
-129
@@ -2,155 +2,104 @@ 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 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() {
|
||||
/* 68 */ return this.imagePath;
|
||||
public void setFaceImagePath(String faceImagePath) {
|
||||
this.faceImagePath = faceImagePath;
|
||||
}
|
||||
}
|
||||
|
||||
public void setImagePath(String imagePath) {
|
||||
/* 72 */ this.imagePath = imagePath;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 76 */ return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 80 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public Location getLocation() {
|
||||
/* 84 */ return this.location;
|
||||
}
|
||||
|
||||
public void setLocation(Location location) {
|
||||
/* 88 */ this.location = location;
|
||||
}
|
||||
|
||||
public Float getQualityScore() {
|
||||
/* 92 */ return this.qualityScore;
|
||||
}
|
||||
|
||||
public void setQualityScore(Float qualityScore) {
|
||||
/* 96 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+22
-31
@@ -1,40 +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 class BodyTrack
|
||||
{
|
||||
private String feature;
|
||||
private String qualityScore;
|
||||
private String extractVersion;
|
||||
|
||||
public String getFeature() {
|
||||
return this.feature;
|
||||
public void setExtractVersion(String extractVersion) {
|
||||
this.extractVersion = extractVersion;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+79
-134
@@ -2,160 +2,105 @@ 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 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() {
|
||||
/* 72 */ return this.name;
|
||||
public void setAuthority(String authority) {
|
||||
this.authority = authority;
|
||||
}
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
/* 76 */ this.name = name;
|
||||
}
|
||||
|
||||
public String getCardId() {
|
||||
/* 80 */ return this.cardId;
|
||||
}
|
||||
|
||||
public void setCardId(String cardId) {
|
||||
/* 84 */ this.cardId = cardId;
|
||||
}
|
||||
|
||||
|
||||
public String getCardImagePath() {
|
||||
/* 89 */ return this.cardImagePath;
|
||||
}
|
||||
|
||||
public void setCardImagePath(String cardImagePath) {
|
||||
/* 93 */ this.cardImagePath = cardImagePath;
|
||||
}
|
||||
|
||||
public String getCardType() {
|
||||
/* 97 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+36
-62
@@ -1,75 +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 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 setOldLabelId(Long oldLabelId) {
|
||||
this.oldLabelId = oldLabelId;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+78
-130
@@ -1,155 +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 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() {
|
||||
/* 67 */ return this.deviceId;
|
||||
public void setProceduremaskscore(Float proceduremaskscore) {
|
||||
this.proceduremaskscore = proceduremaskscore;
|
||||
}
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 71 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceName() {
|
||||
/* 75 */ return this.deviceName;
|
||||
}
|
||||
|
||||
public void setDeviceName(String deviceName) {
|
||||
/* 79 */ this.deviceName = deviceName;
|
||||
}
|
||||
|
||||
public Long getCaptureTime() {
|
||||
/* 83 */ return this.captureTime;
|
||||
}
|
||||
|
||||
public void setCaptureTime(Long captureTime) {
|
||||
/* 87 */ this.captureTime = captureTime;
|
||||
}
|
||||
|
||||
public String getFaceImageUrl() {
|
||||
/* 91 */ return this.faceImageUrl;
|
||||
}
|
||||
|
||||
public void setFaceImageUrl(String faceImageUrl) {
|
||||
/* 95 */ this.faceImageUrl = faceImageUrl;
|
||||
}
|
||||
|
||||
public String getFaceTempImageUrl() {
|
||||
/* 99 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+22
-42
@@ -1,51 +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 class Expression
|
||||
{
|
||||
private int type;
|
||||
private float probability;
|
||||
private float smileScore;
|
||||
|
||||
public int getType() {
|
||||
return this.type;
|
||||
public void setSmileScore(float smileScore) {
|
||||
this.smileScore = smileScore;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+71
-121
@@ -2,145 +2,95 @@ 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 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() {
|
||||
/* 66 */ return this.faceId;
|
||||
public void setMaskScore(Float maskScore) {
|
||||
this.maskScore = maskScore;
|
||||
}
|
||||
}
|
||||
|
||||
public void setFaceId(String faceId) {
|
||||
/* 70 */ this.faceId = faceId;
|
||||
}
|
||||
|
||||
public String getFaceImagePath() {
|
||||
/* 74 */ return this.faceImagePath;
|
||||
}
|
||||
|
||||
public void setFaceImagePath(String faceImagePath) {
|
||||
/* 78 */ this.faceImagePath = faceImagePath;
|
||||
}
|
||||
|
||||
public Long getRecognitionTime() {
|
||||
/* 82 */ return this.recognitionTime;
|
||||
}
|
||||
|
||||
public void setRecognitionTime(Long recognitionTime) {
|
||||
/* 86 */ this.recognitionTime = recognitionTime;
|
||||
}
|
||||
|
||||
public Integer getRecognitionResult() {
|
||||
/* 90 */ return this.recognitionResult;
|
||||
}
|
||||
|
||||
public void setRecognitionResult(Integer recognitionResult) {
|
||||
/* 94 */ this.recognitionResult = recognitionResult;
|
||||
}
|
||||
|
||||
public Float getScore() {
|
||||
/* 98 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+71
-126
@@ -2,150 +2,95 @@ 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 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() {
|
||||
/* 71 */ return this.imageId;
|
||||
public void setStorageStatus(Integer storageStatus) {
|
||||
this.storageStatus = storageStatus;
|
||||
}
|
||||
}
|
||||
|
||||
public void setImageId(String imageId) {
|
||||
/* 75 */ this.imageId = imageId;
|
||||
}
|
||||
|
||||
public String getImagePath() {
|
||||
/* 79 */ return this.imagePath;
|
||||
}
|
||||
|
||||
public void setImagePath(String imagePath) {
|
||||
/* 83 */ this.imagePath = imagePath;
|
||||
}
|
||||
|
||||
public String getCaptureId() {
|
||||
/* 87 */ return this.captureId;
|
||||
}
|
||||
|
||||
public void setCaptureId(String captureId) {
|
||||
/* 91 */ this.captureId = captureId;
|
||||
}
|
||||
|
||||
public long getCaptureTime() {
|
||||
/* 95 */ return this.captureTime;
|
||||
}
|
||||
|
||||
public void setCaptureTime(long captureTime) {
|
||||
/* 99 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+66
-75
@@ -1,85 +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 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 void setCaptureTime(long captureTime) {
|
||||
this.captureTime = captureTime;
|
||||
}
|
||||
|
||||
public String getCaptureId() {
|
||||
return this.captureId;
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+78
-124
@@ -1,149 +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 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() {
|
||||
/* 61 */ return this.score;
|
||||
public void setAge(Integer age) {
|
||||
this.age = age;
|
||||
}
|
||||
}
|
||||
|
||||
public void setScore(Float score) {
|
||||
/* 65 */ this.score = score;
|
||||
}
|
||||
|
||||
public Double getClarity() {
|
||||
/* 69 */ return this.clarity;
|
||||
}
|
||||
|
||||
public void setClarity(Double clarity) {
|
||||
/* 73 */ this.clarity = clarity;
|
||||
}
|
||||
|
||||
public Double getBrightness() {
|
||||
/* 77 */ return this.brightness;
|
||||
}
|
||||
|
||||
public void setBrightness(Double brightness) {
|
||||
/* 81 */ this.brightness = brightness;
|
||||
}
|
||||
|
||||
public Double getPitch() {
|
||||
/* 85 */ return this.pitch;
|
||||
}
|
||||
|
||||
public void setPitch(Double pitch) {
|
||||
/* 89 */ this.pitch = pitch;
|
||||
}
|
||||
|
||||
public Double getYaw() {
|
||||
/* 93 */ return this.yaw;
|
||||
}
|
||||
|
||||
public void setYaw(Double yaw) {
|
||||
/* 97 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+43
-79
@@ -1,94 +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 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 setPlatPersonId(String platPersonId) {
|
||||
this.platPersonId = platPersonId;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+131
-147
@@ -1,164 +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 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 getMouthOpening() {
|
||||
return this.mouthOpening;
|
||||
}
|
||||
|
||||
public Float getQualityScore() {
|
||||
/* 36 */ return this.qualityScore;
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
public void setQualityScore(Float qualityScore) {
|
||||
/* 40 */ this.qualityScore = qualityScore;
|
||||
}
|
||||
|
||||
public Float getClarity() {
|
||||
/* 44 */ return this.clarity;
|
||||
}
|
||||
|
||||
public void setClarity(Float clarity) {
|
||||
/* 48 */ this.clarity = clarity;
|
||||
}
|
||||
|
||||
public Float getBrightness() {
|
||||
/* 52 */ return this.brightness;
|
||||
}
|
||||
|
||||
public void setBrightness(Float brightness) {
|
||||
/* 56 */ this.brightness = brightness;
|
||||
}
|
||||
|
||||
public Float getYawScore() {
|
||||
/* 60 */ return this.yawScore;
|
||||
}
|
||||
|
||||
public void setYawScore(Float yawScore) {
|
||||
/* 64 */ this.yawScore = yawScore;
|
||||
}
|
||||
|
||||
public Float getPitchScore() {
|
||||
/* 68 */ return this.pitchScore;
|
||||
}
|
||||
|
||||
public void setPitchScore(Float pitchScore) {
|
||||
/* 72 */ this.pitchScore = pitchScore;
|
||||
}
|
||||
|
||||
public Float getSkinScore() {
|
||||
/* 76 */ return this.skinScore;
|
||||
}
|
||||
|
||||
public void setSkinScore(Float skinScore) {
|
||||
/* 80 */ this.skinScore = skinScore;
|
||||
}
|
||||
|
||||
public Float getMouthOpening() {
|
||||
/* 84 */ return this.mouthOpening;
|
||||
}
|
||||
|
||||
public void setMouthOpening(Float mouthOpening) {
|
||||
/* 88 */ this.mouthOpening = mouthOpening;
|
||||
}
|
||||
|
||||
public Float getLeftEyeOpening() {
|
||||
/* 92 */ return this.leftEyeOpening;
|
||||
}
|
||||
|
||||
public void setLeftEyeOpening(Float leftEyeOpening) {
|
||||
/* 96 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+22
-31
@@ -1,40 +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 class FaceTrack
|
||||
{
|
||||
private String feature;
|
||||
private String qualityScores;
|
||||
private String extractVersion;
|
||||
|
||||
public String getFeature() {
|
||||
return this.feature;
|
||||
public void setExtractVersion(String extractVersion) {
|
||||
this.extractVersion = extractVersion;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+15
-32
@@ -1,39 +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 class Gender
|
||||
{
|
||||
private Integer type;
|
||||
private Float probability;
|
||||
|
||||
public Integer getType() {
|
||||
return this.type;
|
||||
public void setProbability(Float probability) {
|
||||
this.probability = probability;
|
||||
}
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public Float getProbability() {
|
||||
return this.probability;
|
||||
}
|
||||
|
||||
public void setProbability(Float probability) {
|
||||
this.probability = probability;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+78
-131
@@ -1,156 +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 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() {
|
||||
/* 68 */ return this.roiId;
|
||||
public void setRoiStatus(Integer roiStatus) {
|
||||
this.roiStatus = roiStatus;
|
||||
}
|
||||
}
|
||||
|
||||
public void setRoiId(String roiId) {
|
||||
/* 72 */ this.roiId = roiId;
|
||||
}
|
||||
|
||||
public Integer getX() {
|
||||
/* 76 */ return this.x;
|
||||
}
|
||||
|
||||
public void setX(Integer x) {
|
||||
/* 80 */ this.x = x;
|
||||
}
|
||||
|
||||
public Integer getY() {
|
||||
/* 84 */ return this.y;
|
||||
}
|
||||
|
||||
public void setY(Integer y) {
|
||||
/* 88 */ this.y = y;
|
||||
}
|
||||
|
||||
public Integer getWidth() {
|
||||
/* 92 */ return this.width;
|
||||
}
|
||||
|
||||
public void setWidth(Integer width) {
|
||||
/* 96 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+39
-48
@@ -1,58 +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 class ImageData
|
||||
{
|
||||
private String groupId;
|
||||
private String faceId;
|
||||
private String code;
|
||||
private String message;
|
||||
private Long lastUpdateTime;
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getGroupId() {
|
||||
return this.groupId;
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+22
-31
@@ -1,40 +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 class KeyPoint
|
||||
{
|
||||
private int x;
|
||||
private int y;
|
||||
private float score;
|
||||
|
||||
public int getX() {
|
||||
return this.x;
|
||||
public void setScore(float score) {
|
||||
this.score = score;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+29
-54
@@ -1,65 +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 class Panorama
|
||||
{
|
||||
private String panoramaId;
|
||||
private String panoramaImagePath;
|
||||
private String tempImagePath;
|
||||
private long captureTime;
|
||||
|
||||
public String getPanoramaId() {
|
||||
return this.panoramaId;
|
||||
public void setTempImagePath(String tempImagePath) {
|
||||
this.tempImagePath = tempImagePath;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+29
-56
@@ -1,67 +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 class PanoramaDeviceData
|
||||
{
|
||||
private String deviceId;
|
||||
private String imageType;
|
||||
private String imagePath;
|
||||
private String reserveInfo;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
public void setReserveInfo(String reserveInfo) {
|
||||
this.reserveInfo = reserveInfo;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+29
-54
@@ -1,65 +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 class Points
|
||||
{
|
||||
private Integer x;
|
||||
private Integer y;
|
||||
private Integer w;
|
||||
private Integer h;
|
||||
|
||||
public Integer getX() {
|
||||
return this.x;
|
||||
public void setH(Integer h) {
|
||||
this.h = h;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+15
-24
@@ -1,31 +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 class Position
|
||||
{
|
||||
private Integer x;
|
||||
private Integer y;
|
||||
|
||||
public Integer getX() {
|
||||
return this.x;
|
||||
public void setY(Integer y) {
|
||||
this.y = y;
|
||||
}
|
||||
}
|
||||
|
||||
public void setX(Integer x) {
|
||||
this.x = x;
|
||||
}
|
||||
|
||||
public Integer getY() {
|
||||
return this.y;
|
||||
}
|
||||
|
||||
public void setY(Integer y) {
|
||||
this.y = y;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+15
-32
@@ -1,39 +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 class Race
|
||||
{
|
||||
private Integer type;
|
||||
private Float probability;
|
||||
|
||||
public int getType() {
|
||||
return this.type.intValue();
|
||||
public void setProbability(float probability) {
|
||||
this.probability = Float.valueOf(probability);
|
||||
}
|
||||
}
|
||||
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+36
-65
@@ -2,79 +2,50 @@ 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 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 setPoints(List<Points> points) {
|
||||
this.points = points;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+22
-42
@@ -2,52 +2,32 @@ 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 class RoiData
|
||||
{
|
||||
private String roiId;
|
||||
private Integer headCount;
|
||||
private List<Position> position;
|
||||
|
||||
public String getRoiId() {
|
||||
return this.roiId;
|
||||
public void setPosition(List<Position> position) {
|
||||
this.position = position;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+50
-87
@@ -2,105 +2,68 @@ 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 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() {
|
||||
/* 50 */ return this.deviceId;
|
||||
public void setRoiData(List<RoiConfData> roiData) {
|
||||
this.roiData = roiData;
|
||||
}
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 54 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public Integer getRoiCount() {
|
||||
/* 58 */ return this.roiCount;
|
||||
}
|
||||
|
||||
public void setRoiCount(Integer roiCount) {
|
||||
/* 62 */ this.roiCount = roiCount;
|
||||
}
|
||||
|
||||
public Integer getHeight() {
|
||||
/* 66 */ return this.height;
|
||||
}
|
||||
|
||||
public void setHeight(Integer height) {
|
||||
/* 70 */ this.height = height;
|
||||
}
|
||||
|
||||
public Integer getWidth() {
|
||||
/* 74 */ return this.width;
|
||||
}
|
||||
|
||||
public void setWidth(Integer width) {
|
||||
/* 78 */ this.width = width;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
/* 82 */ return this.type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
/* 86 */ this.type = type;
|
||||
}
|
||||
|
||||
public Integer getMethod() {
|
||||
/* 90 */ return this.method;
|
||||
}
|
||||
|
||||
public void setMethod(Integer method) {
|
||||
/* 94 */ this.method = method;
|
||||
}
|
||||
|
||||
public List<RoiConfData> getRoiData() {
|
||||
/* 98 */ return this.roiData;
|
||||
}
|
||||
|
||||
public void setRoiData(List<RoiConfData> roiData) {
|
||||
this.roiData = roiData;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+43
-76
@@ -2,92 +2,59 @@ 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 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 setHeadData(List<HeadData> headData) {
|
||||
this.headData = headData;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+22
-31
@@ -1,40 +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 class RoiDeviceRegisterData
|
||||
{
|
||||
private String deviceId;
|
||||
private String deviceName;
|
||||
private Long regTime;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
public void setRegTime(Long regTime) {
|
||||
this.regTime = regTime;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+15
-31
@@ -1,38 +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 class RoiPanoramaData
|
||||
{
|
||||
private String panoramaId;
|
||||
private String panoramaImagePath;
|
||||
|
||||
public String getPanoramaId() {
|
||||
return this.panoramaId;
|
||||
public void setPanoramaImagePath(String panoramaImagePath) {
|
||||
this.panoramaImagePath = panoramaImagePath;
|
||||
}
|
||||
}
|
||||
|
||||
public void setPanoramaId(String panoramaId) {
|
||||
this.panoramaId = panoramaId;
|
||||
}
|
||||
|
||||
public String getPanoramaImagePath() {
|
||||
return this.panoramaImagePath;
|
||||
}
|
||||
|
||||
public void setPanoramaImagePath(String panoramaImagePath) {
|
||||
this.panoramaImagePath = panoramaImagePath;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+8
-17
@@ -1,22 +1,13 @@
|
||||
package cn.cloudwalk.cwos.client.event.event.mode;
|
||||
|
||||
public class Uygur {
|
||||
private Float probability;
|
||||
|
||||
public Float getProbability() {
|
||||
return this.probability;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class Uygur
|
||||
{
|
||||
private Float probability;
|
||||
|
||||
public Float getProbability() {
|
||||
return this.probability;
|
||||
public void setProbability(Float probability) {
|
||||
this.probability = probability;
|
||||
}
|
||||
}
|
||||
|
||||
public void setProbability(Float probability) {
|
||||
this.probability = probability;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+22
-45
@@ -2,55 +2,32 @@ 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 class EnterpriseChangeEvent
|
||||
extends BaseEvent
|
||||
{
|
||||
private String businessName;
|
||||
private Long changeTime;
|
||||
private String change;
|
||||
|
||||
public String getBusinessName() {
|
||||
return this.businessName;
|
||||
public void setChange(String change) {
|
||||
this.change = change;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+71
-118
@@ -1,141 +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 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() {
|
||||
/* 61 */ return this.backgroundPicPath;
|
||||
public void setBodyAttrs(BodyAttrsData bodyAttrs) {
|
||||
this.bodyAttrs = bodyAttrs;
|
||||
}
|
||||
}
|
||||
|
||||
public void setBackgroundPicPath(String backgroundPicPath) {
|
||||
/* 65 */ this.backgroundPicPath = backgroundPicPath;
|
||||
}
|
||||
|
||||
public String getBodyPicPath() {
|
||||
/* 69 */ return this.bodyPicPath;
|
||||
}
|
||||
|
||||
public void setBodyPicPath(String bodyPicPath) {
|
||||
/* 73 */ this.bodyPicPath = bodyPicPath;
|
||||
}
|
||||
|
||||
public String getTrackId() {
|
||||
/* 77 */ return this.trackId;
|
||||
}
|
||||
|
||||
public void setTrackId(String trackId) {
|
||||
/* 81 */ this.trackId = trackId;
|
||||
}
|
||||
|
||||
public Long getCaptureTime() {
|
||||
/* 85 */ return this.captureTime;
|
||||
}
|
||||
|
||||
public void setCaptureTime(Long captureTime) {
|
||||
/* 89 */ this.captureTime = captureTime;
|
||||
}
|
||||
|
||||
public String getBackgroundPic() {
|
||||
/* 93 */ return this.backgroundPic;
|
||||
}
|
||||
|
||||
public void setBackgroundPic(String backgroundPic) {
|
||||
/* 97 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+340
-713
File diff suppressed because it is too large
Load Diff
+71
-128
@@ -3,152 +3,95 @@ 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 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() {
|
||||
/* 74 */ return this.backgroundPicPath;
|
||||
public void setFaceAttrs(FaceAttrData faceAttrs) {
|
||||
this.faceAttrs = faceAttrs;
|
||||
}
|
||||
}
|
||||
|
||||
public void setBackgroundPicPath(String backgroundPicPath) {
|
||||
/* 78 */ this.backgroundPicPath = backgroundPicPath;
|
||||
}
|
||||
|
||||
public String getFacePicPath() {
|
||||
/* 82 */ return this.facePicPath;
|
||||
}
|
||||
|
||||
public void setFacePicPath(String facePicPath) {
|
||||
/* 86 */ this.facePicPath = facePicPath;
|
||||
}
|
||||
|
||||
public String getTrackId() {
|
||||
/* 90 */ return this.trackId;
|
||||
}
|
||||
|
||||
public void setTrackId(String trackId) {
|
||||
/* 94 */ this.trackId = trackId;
|
||||
}
|
||||
|
||||
public Long getCaptureTime() {
|
||||
/* 98 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+312
-658
File diff suppressed because it is too large
Load Diff
+29
-54
@@ -1,65 +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 class LocationData
|
||||
{
|
||||
private Integer x;
|
||||
private Integer y;
|
||||
private Integer width;
|
||||
private Integer height;
|
||||
|
||||
public Integer getX() {
|
||||
return this.x;
|
||||
public void setHeight(Integer height) {
|
||||
this.height = height;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+36
-66
@@ -3,80 +3,50 @@ 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 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 setPlate(PlateData plate) {
|
||||
this.plate = plate;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+73
-145
@@ -2,149 +2,77 @@ 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() {
|
||||
/* 86 */ return this.vehicleColor;
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
public void setVehicleColor(ValueScoreData vehicleColor) {
|
||||
/* 90 */ this.vehicleColor = vehicleColor;
|
||||
}
|
||||
|
||||
public ValueScoreData getManned() {
|
||||
/* 94 */ return this.manned;
|
||||
}
|
||||
|
||||
public void setManned(ValueScoreData manned) {
|
||||
/* 98 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+71
-134
@@ -1,157 +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 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() {
|
||||
/* 77 */ return this.captureTime;
|
||||
public void setNonVehicleAttrs(NonVehicleAttrData nonVehicleAttrs) {
|
||||
this.nonVehicleAttrs = nonVehicleAttrs;
|
||||
}
|
||||
}
|
||||
|
||||
public void setCaptureTime(String captureTime) {
|
||||
/* 81 */ this.captureTime = captureTime;
|
||||
}
|
||||
|
||||
public String getTrackId() {
|
||||
/* 85 */ return this.trackId;
|
||||
}
|
||||
|
||||
public void setTrackId(String trackId) {
|
||||
/* 89 */ this.trackId = trackId;
|
||||
}
|
||||
|
||||
public String getNonVehiclePic() {
|
||||
/* 93 */ return this.nonVehiclePic;
|
||||
}
|
||||
|
||||
public void setNonVehiclePic(String nonVehiclePic) {
|
||||
/* 97 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+15
-29
@@ -1,36 +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 class Person
|
||||
{
|
||||
private Face face;
|
||||
public Body bodyVar;
|
||||
|
||||
public Face getFace() {
|
||||
return this.face;
|
||||
public void setBodyVar(Body bodyVar) {
|
||||
this.bodyVar = bodyVar;
|
||||
}
|
||||
}
|
||||
|
||||
public void setFace(Face face) {
|
||||
this.face = face;
|
||||
}
|
||||
|
||||
|
||||
public Body getBodyVar() {
|
||||
return this.bodyVar;
|
||||
}
|
||||
|
||||
public void setBodyVar(Body bodyVar) {
|
||||
this.bodyVar = bodyVar;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+82
-161
@@ -2,165 +2,86 @@ 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() {
|
||||
/* 94 */ return this.plateNo;
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
public void setPlateNo(ValueScoreData plateNo) {
|
||||
/* 98 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+29
-62
@@ -1,73 +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 class PlateData
|
||||
{
|
||||
private String platePic;
|
||||
private String platePicPath;
|
||||
private LocationData plateLocation;
|
||||
private PlateAttrData plateAttrs;
|
||||
|
||||
public String getPlatePic() {
|
||||
return this.platePic;
|
||||
public void setPlatePicPath(String platePicPath) {
|
||||
this.platePicPath = platePicPath;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+22
-39
@@ -2,49 +2,32 @@ 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 class StructureCarCaptureEvent
|
||||
extends BaseEvent
|
||||
{
|
||||
private String subDeviceId;
|
||||
private String captureId;
|
||||
private Vehicle vehicle;
|
||||
|
||||
public String getSubDeviceId() {
|
||||
return this.subDeviceId;
|
||||
public void setVehicle(Vehicle vehicle) {
|
||||
this.vehicle = vehicle;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+22
-42
@@ -2,52 +2,32 @@ 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 class StructureNoCarCaptureEvent
|
||||
extends BaseEvent
|
||||
{
|
||||
private String subDeviceId;
|
||||
private String captureId;
|
||||
private NonVehicle nonVehicle;
|
||||
|
||||
public String getSubDeviceId() {
|
||||
return this.subDeviceId;
|
||||
public void setNonVehicle(NonVehicle nonVehicle) {
|
||||
this.nonVehicle = nonVehicle;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+29
-53
@@ -2,65 +2,41 @@ 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 class StructurePersonCaptureEvent
|
||||
extends BaseEvent
|
||||
{
|
||||
private String subDeviceId;
|
||||
private String captureId;
|
||||
private String personId;
|
||||
private Person person;
|
||||
|
||||
public String getSubDeviceId() {
|
||||
return this.subDeviceId;
|
||||
public void setPerson(Person person) {
|
||||
this.person = person;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+50
-84
@@ -2,102 +2,68 @@ 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 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 setLogId(String logId) {
|
||||
this.logId = logId;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+15
-35
@@ -2,43 +2,23 @@ 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 class ValueScoreData
|
||||
implements Serializable
|
||||
{
|
||||
private String values;
|
||||
private Float score;
|
||||
|
||||
public String getValues() {
|
||||
return this.values;
|
||||
public void setScore(Float score) {
|
||||
this.score = score;
|
||||
}
|
||||
}
|
||||
|
||||
public void setValues(String values) {
|
||||
this.values = values;
|
||||
}
|
||||
|
||||
public Float getScore() {
|
||||
return this.score;
|
||||
}
|
||||
|
||||
public void setScore(Float score) {
|
||||
this.score = score;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+36
-75
@@ -3,89 +3,50 @@ 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 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 setPlate(PlateData plate) {
|
||||
this.plate = plate;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+194
-398
@@ -2,425 +2,221 @@ 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 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 setLaneNo(ValueScoreData laneNo) {
|
||||
this.laneNo = laneNo;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+71
-119
@@ -2,143 +2,95 @@ 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 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() {
|
||||
/* 64 */ return this.trackId;
|
||||
public void setBackgroundPicPath(String backgroundPicPath) {
|
||||
this.backgroundPicPath = backgroundPicPath;
|
||||
}
|
||||
}
|
||||
|
||||
public void setTrackId(String trackId) {
|
||||
/* 68 */ this.trackId = trackId;
|
||||
}
|
||||
|
||||
public Long getCaptureTime() {
|
||||
/* 72 */ return this.captureTime;
|
||||
}
|
||||
|
||||
public void setCaptureTime(Long captureTime) {
|
||||
/* 76 */ this.captureTime = captureTime;
|
||||
}
|
||||
|
||||
public String getVehiclePic() {
|
||||
/* 80 */ return this.vehiclePic;
|
||||
}
|
||||
|
||||
public void setVehiclePic(String vehiclePic) {
|
||||
/* 84 */ this.vehiclePic = vehiclePic;
|
||||
}
|
||||
|
||||
public String getBackgroundPic() {
|
||||
/* 88 */ return this.backgroundPic;
|
||||
}
|
||||
|
||||
public void setBackgroundPic(String backgroundPic) {
|
||||
/* 92 */ this.backgroundPic = backgroundPic;
|
||||
}
|
||||
|
||||
public String getQualityScore() {
|
||||
/* 96 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+145
-213
@@ -2,226 +2,158 @@ 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 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() {
|
||||
/* 91 */ return this.faceId;
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
}
|
||||
|
||||
public void setFaceId(String faceId) {
|
||||
/* 95 */ this.faceId = faceId;
|
||||
}
|
||||
|
||||
public Long getCaptureTime() {
|
||||
/* 99 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+92
-141
@@ -3,171 +3,122 @@ package cn.cloudwalk.cwos.client.event.event.track;
|
||||
import cn.cloudwalk.cwos.client.event.event.BaseEvent;
|
||||
import cn.cloudwalk.cwos.client.event.event.Location;
|
||||
|
||||
public class TrackRecordEvent extends BaseEvent {
|
||||
private String imagePath;
|
||||
private String panoramaPath;
|
||||
private String feature;
|
||||
private String identityFaceId;
|
||||
private String identityReid;
|
||||
private Float reliability;
|
||||
private Float qualityScore;
|
||||
private Location location;
|
||||
private String captureTime;
|
||||
private String identityId;
|
||||
private String trackId;
|
||||
private String historyIdentityId;
|
||||
private String cameraGroup;
|
||||
|
||||
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 getIdentityFaceId() {
|
||||
return this.identityFaceId;
|
||||
}
|
||||
|
||||
public void setIdentityFaceId(String identityFaceId) {
|
||||
this.identityFaceId = identityFaceId;
|
||||
}
|
||||
|
||||
public String getIdentityReid() {
|
||||
return this.identityReid;
|
||||
}
|
||||
|
||||
public void setIdentityReid(String identityReid) {
|
||||
this.identityReid = identityReid;
|
||||
}
|
||||
|
||||
public Float getReliability() {
|
||||
return this.reliability;
|
||||
}
|
||||
|
||||
public void setReliability(Float reliability) {
|
||||
this.reliability = reliability;
|
||||
}
|
||||
|
||||
public Float getQualityScore() {
|
||||
return this.qualityScore;
|
||||
}
|
||||
|
||||
public void setQualityScore(Float qualityScore) {
|
||||
this.qualityScore = qualityScore;
|
||||
}
|
||||
|
||||
public Location getLocation() {
|
||||
return this.location;
|
||||
}
|
||||
|
||||
public void setLocation(Location location) {
|
||||
this.location = location;
|
||||
}
|
||||
|
||||
public String getCaptureTime() {
|
||||
return this.captureTime;
|
||||
}
|
||||
|
||||
public void setCaptureTime(String captureTime) {
|
||||
this.captureTime = captureTime;
|
||||
}
|
||||
|
||||
public String getIdentityId() {
|
||||
return this.identityId;
|
||||
}
|
||||
|
||||
public void setIdentityId(String identityId) {
|
||||
this.identityId = identityId;
|
||||
}
|
||||
|
||||
public String getTrackId() {
|
||||
return this.trackId;
|
||||
}
|
||||
|
||||
public void setTrackId(String trackId) {
|
||||
this.trackId = trackId;
|
||||
}
|
||||
|
||||
public String getHistoryIdentityId() {
|
||||
return this.historyIdentityId;
|
||||
}
|
||||
|
||||
public void setHistoryIdentityId(String historyIdentityId) {
|
||||
this.historyIdentityId = historyIdentityId;
|
||||
}
|
||||
|
||||
public String getCameraGroup() {
|
||||
return this.cameraGroup;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class TrackRecordEvent
|
||||
extends BaseEvent
|
||||
{
|
||||
private String imagePath;
|
||||
private String panoramaPath;
|
||||
private String feature;
|
||||
private String identityFaceId;
|
||||
private String identityReid;
|
||||
private Float reliability;
|
||||
private Float qualityScore;
|
||||
private Location location;
|
||||
private String captureTime;
|
||||
private String identityId;
|
||||
private String trackId;
|
||||
private String historyIdentityId;
|
||||
private String cameraGroup;
|
||||
|
||||
public String getImagePath() {
|
||||
/* 69 */ return this.imagePath;
|
||||
public void setCameraGroup(String cameraGroup) {
|
||||
this.cameraGroup = cameraGroup;
|
||||
}
|
||||
}
|
||||
|
||||
public void setImagePath(String imagePath) {
|
||||
/* 73 */ this.imagePath = imagePath;
|
||||
}
|
||||
|
||||
public String getPanoramaPath() {
|
||||
/* 77 */ return this.panoramaPath;
|
||||
}
|
||||
|
||||
public void setPanoramaPath(String panoramaPath) {
|
||||
/* 81 */ this.panoramaPath = panoramaPath;
|
||||
}
|
||||
|
||||
public String getFeature() {
|
||||
/* 85 */ return this.feature;
|
||||
}
|
||||
|
||||
public void setFeature(String feature) {
|
||||
/* 89 */ this.feature = feature;
|
||||
}
|
||||
|
||||
public String getIdentityFaceId() {
|
||||
/* 93 */ return this.identityFaceId;
|
||||
}
|
||||
|
||||
public void setIdentityFaceId(String identityFaceId) {
|
||||
/* 97 */ this.identityFaceId = identityFaceId;
|
||||
}
|
||||
|
||||
public String getIdentityReid() {
|
||||
return this.identityReid;
|
||||
}
|
||||
|
||||
public void setIdentityReid(String identityReid) {
|
||||
this.identityReid = identityReid;
|
||||
}
|
||||
|
||||
public Float getReliability() {
|
||||
return this.reliability;
|
||||
}
|
||||
|
||||
public void setReliability(Float reliability) {
|
||||
this.reliability = reliability;
|
||||
}
|
||||
|
||||
public Float getQualityScore() {
|
||||
return this.qualityScore;
|
||||
}
|
||||
|
||||
public void setQualityScore(Float qualityScore) {
|
||||
this.qualityScore = qualityScore;
|
||||
}
|
||||
|
||||
public Location getLocation() {
|
||||
return this.location;
|
||||
}
|
||||
|
||||
public void setLocation(Location location) {
|
||||
this.location = location;
|
||||
}
|
||||
|
||||
public String getCaptureTime() {
|
||||
return this.captureTime;
|
||||
}
|
||||
|
||||
public void setCaptureTime(String captureTime) {
|
||||
this.captureTime = captureTime;
|
||||
}
|
||||
|
||||
public String getIdentityId() {
|
||||
return this.identityId;
|
||||
}
|
||||
|
||||
public void setIdentityId(String identityId) {
|
||||
this.identityId = identityId;
|
||||
}
|
||||
|
||||
public String getTrackId() {
|
||||
return this.trackId;
|
||||
}
|
||||
|
||||
public void setTrackId(String trackId) {
|
||||
this.trackId = trackId;
|
||||
}
|
||||
|
||||
public String getHistoryIdentityId() {
|
||||
return this.historyIdentityId;
|
||||
}
|
||||
|
||||
public void setHistoryIdentityId(String historyIdentityId) {
|
||||
this.historyIdentityId = historyIdentityId;
|
||||
}
|
||||
|
||||
public String getCameraGroup() {
|
||||
return this.cameraGroup;
|
||||
}
|
||||
|
||||
public void setCameraGroup(String cameraGroup) {
|
||||
this.cameraGroup = cameraGroup;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user