要解析的bin包

xiaoxiao2021-02-28  99

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 + “]”; }

}

转载请注明原文地址: https://www.6miu.com/read-61777.html

最新回复(0)