22 lines
472 B
Java
22 lines
472 B
Java
|
|
package com.wecom.robot.dto;
|
||
|
|
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
import java.time.LocalDateTime;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
public class SessionInfo {
|
||
|
|
|
||
|
|
private String sessionId;
|
||
|
|
private String customerId;
|
||
|
|
private String kfId;
|
||
|
|
private String status;
|
||
|
|
private String manualCsId;
|
||
|
|
private LocalDateTime createdAt;
|
||
|
|
private LocalDateTime updatedAt;
|
||
|
|
private String metadata;
|
||
|
|
private int messageCount;
|
||
|
|
private String lastMessage;
|
||
|
|
private LocalDateTime lastMessageTime;
|
||
|
|
}
|