要解析的bin包

来源:互联网 发布:linux sh脚本编写 编辑:程序博客网 时间:2024/06/07 13:05

package com.example.weekoneex.bean;

public class News {
String title;
String content;
String news;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public String getNews() {
return news;
}
public void setNews(String news) {
this.news = news;
}
@Override
public String toString() {
return “News [title=” + title + “, content=” + content + “, news=”
+ news + “]”;
}

}