创建 WeChatMsg.java
parent
cc4ef4939c
commit
82d21d98be
|
|
@ -0,0 +1,83 @@
|
|||
package com.nbee.echolink.model;
|
||||
|
||||
public class WeChatMsg {
|
||||
private String packageName;
|
||||
private String appName;
|
||||
private String title;
|
||||
private String sender;
|
||||
private String message;
|
||||
|
||||
public String getCurrentTime() {
|
||||
return currentTime;
|
||||
}
|
||||
|
||||
public void setCurrentTime(String currentTime) {
|
||||
this.currentTime = currentTime;
|
||||
}
|
||||
|
||||
private String currentTime;
|
||||
|
||||
public String getPackageName() {
|
||||
return packageName;
|
||||
}
|
||||
|
||||
public void setPackageName(String packageName) {
|
||||
this.packageName = packageName;
|
||||
}
|
||||
|
||||
public String getAppName() {
|
||||
return appName;
|
||||
}
|
||||
|
||||
public void setAppName(String appName) {
|
||||
this.appName = appName;
|
||||
}
|
||||
|
||||
public String getTitle() {
|
||||
return title;
|
||||
}
|
||||
|
||||
public void setTitle(String title) {
|
||||
this.title = title;
|
||||
}
|
||||
|
||||
public String getSender() {
|
||||
return sender;
|
||||
}
|
||||
|
||||
public void setSender(String sender) {
|
||||
this.sender = sender;
|
||||
}
|
||||
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
|
||||
public void setMessage(String message) {
|
||||
this.message = message;
|
||||
}
|
||||
|
||||
public WeChatMsg() {
|
||||
}
|
||||
|
||||
public WeChatMsg(String packageName, String appName, String title, String sender, String message,String currentTime) {
|
||||
this.packageName = packageName;
|
||||
this.appName = appName;
|
||||
this.title = title;
|
||||
this.sender = sender;
|
||||
this.message = message;
|
||||
this.currentTime = currentTime;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "WeChatMsg{" +
|
||||
"packageName='" + packageName + '\'' +
|
||||
", appName='" + appName + '\'' +
|
||||
", title='" + title + '\'' +
|
||||
", sender='" + sender + '\'' +
|
||||
", message='" + message + '\'' +
|
||||
", currentTime='" + currentTime + '\'' +
|
||||
'}';
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue