From 2a86a89961eb9faf0052a387620c4249fa8e7022 Mon Sep 17 00:00:00 2001 From: pepper Date: Mon, 12 Jul 2021 06:50:26 +0000 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20HarmonyO?= =?UTF-8?q?SNewsClient/entry/src/main/java/com/huawei/codelab/been?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/huawei/codelab/been/NewsInfo.java | 75 ------------------- .../com/huawei/codelab/been/NewsType.java | 29 ------- 2 files changed, 104 deletions(-) delete mode 100644 HarmonyOSNewsClient/entry/src/main/java/com/huawei/codelab/been/NewsInfo.java delete mode 100644 HarmonyOSNewsClient/entry/src/main/java/com/huawei/codelab/been/NewsType.java diff --git a/HarmonyOSNewsClient/entry/src/main/java/com/huawei/codelab/been/NewsInfo.java b/HarmonyOSNewsClient/entry/src/main/java/com/huawei/codelab/been/NewsInfo.java deleted file mode 100644 index e688deab..00000000 --- a/HarmonyOSNewsClient/entry/src/main/java/com/huawei/codelab/been/NewsInfo.java +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Copyright (c) 2021 Huawei Device Co., Ltd.All rights reserved. - * Licensed under the Apache License,Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.huawei.codelab.been; - -/** - * News information - * - * @since 2020-12-04 - */ -public class NewsInfo { - private String title; - - private String type; - - private String imgUrl; - - private String reads; - - private String likes; - - private String content; - - public String getImgUrl() { - return imgUrl; - } - - public String getReads() { - return reads; - } - - public void setReads(String reads) { - this.reads = reads; - } - - public String getLikes() { - return likes; - } - - public void setLikes(String likes) { - this.likes = likes; - } - - public String getContent() { - return content; - } - - public void setContent(String content) { - this.content = content; - } - - public String getTitle() { - return title; - } - - public void setTitle(String title) { - this.title = title; - } - - public String getType() { - return type; - } -} diff --git a/HarmonyOSNewsClient/entry/src/main/java/com/huawei/codelab/been/NewsType.java b/HarmonyOSNewsClient/entry/src/main/java/com/huawei/codelab/been/NewsType.java deleted file mode 100644 index e01c169c..00000000 --- a/HarmonyOSNewsClient/entry/src/main/java/com/huawei/codelab/been/NewsType.java +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (c) 2021 Huawei Device Co., Ltd.All rights reserved. - * Licensed under the Apache License,Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.huawei.codelab.been; - -/** - * News information - * - * @since 2020-12-04 - */ -public class NewsType { - private String name; - - public String getName() { - return name; - } -} -- Gitee