package com.hdl.photovoltaic.ui.bean;
|
|
import java.io.Serializable;
|
|
/**
|
* 聊天对话列表实体类
|
*/
|
public class ChatMessageListBean implements Serializable {
|
private String id;
|
private String name;
|
private Inputs inputs;
|
private String status;
|
private String introduction;
|
private long createdAt;
|
private long updatedAt;
|
|
public String getId() {
|
return id == null ? "" : id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name == null ? "" : name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public Inputs getInputs() {
|
return inputs;
|
}
|
|
public void setInputs(Inputs inputs) {
|
this.inputs = inputs;
|
}
|
|
public String getStatus() {
|
return status == null ? "" : status;
|
}
|
|
public void setStatus(String status) {
|
this.status = status;
|
}
|
|
public String getIntroduction() {
|
return introduction == null ? "" : introduction;
|
}
|
|
public void setIntroduction(String introduction) {
|
this.introduction = introduction;
|
}
|
|
public long getCreatedAt() {
|
return createdAt;
|
}
|
|
public void setCreatedAt(long createdAt) {
|
this.createdAt = createdAt;
|
}
|
|
public long getUpdatedAt() {
|
return updatedAt;
|
}
|
|
public void setUpdatedAt(long updatedAt) {
|
this.updatedAt = updatedAt;
|
}
|
|
public static class Inputs implements Serializable {
|
private String source;
|
private String platform;
|
|
public String getSource() {
|
return source == null ? "" : source;
|
}
|
|
public void setSource(String source) {
|
this.source = source;
|
}
|
|
public String getPlatform() {
|
return platform == null ? "" : platform;
|
}
|
|
public void setPlatform(String platform) {
|
this.platform = platform;
|
}
|
}
|
}
|