| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package com.goafanti.baiduAI.bo;
- import com.goafanti.common.bo.SseEmitterUTF8;
- import org.springframework.web.servlet.mvc.method.annotation.SseEmitter;
- public class SseResult {
- public String clientId;
- public long timestamp;
- public SseEmitterUTF8 sseEmitter;
- public String getClientId() {
- return clientId;
- }
- public void setClientId(String clientId) {
- this.clientId = clientId;
- }
- public long getTimestamp() {
- return timestamp;
- }
- public void setTimestamp(long timestamp) {
- this.timestamp = timestamp;
- }
- public SseEmitter getSseEmitter() {
- return sseEmitter;
- }
- public SseResult(String clientId, long timestamp, SseEmitterUTF8 sseEmitter) {
- this.clientId = clientId;
- this.timestamp = timestamp;
- this.sseEmitter = sseEmitter;
- }
- public SseResult() {
- }
- }
|