package com.tejia.lijin.app.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
public class WelcomeMsg {
|
|
@Expose
|
String icon;
|
@Expose
|
String content;
|
@Expose
|
String time;
|
@Expose
|
String title;
|
|
public String getIcon() {
|
return icon;
|
}
|
|
public void setIcon(String icon) {
|
this.icon = icon;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public String getTime() {
|
return time;
|
}
|
|
public void setTime(String time) {
|
this.time = time;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
}
|