更新 UploadNotificationResponse 数据模型,修改 received 字段类型为 boolean;更新 item_user.xml 布局文件,添加文本颜色属性;更新 IDE 配置文件。

This commit is contained in:
wchino
2026-06-23 14:37:11 +08:00
parent 8c8b0b056f
commit f0eebb834e
6 changed files with 5 additions and 5 deletions

3
.idea/misc.xml generated
View File

@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" /> <component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="ProjectRootManager" version="2" languageLevel="JDK_21" project-jdk-name="jbr-21" project-jdk-type="JavaSDK"> <component name="ProjectRootManager" version="2" languageLevel="JDK_21" default="true" project-jdk-name="jbr-21" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" /> <output url="file://$PROJECT_DIR$/build/classes" />
</component> </component>
<component name="ProjectType"> <component name="ProjectType">

Binary file not shown.

View File

@@ -10,7 +10,7 @@ package com.miraclegarden.smsmessage.model;
*/ */
public class UploadNotificationResponse { public class UploadNotificationResponse {
private boolean ok; private boolean ok;
private int received; private boolean received;
private String id; private String id;
private String processingStatus; private String processingStatus;
private String emailSyncRecordId; private String emailSyncRecordId;
@@ -25,11 +25,11 @@ public class UploadNotificationResponse {
this.ok = ok; this.ok = ok;
} }
public int getReceived() { public boolean isReceived() {
return received; return received;
} }
public void setReceived(int received) { public void setReceived(boolean received) {
this.received = received; this.received = received;
} }

View File

@@ -38,6 +38,7 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:textSize="16sp" android:textSize="16sp"
android:text="111111" android:text="111111"
android:textColor="#333333"
android:textStyle="bold" /> android:textStyle="bold" />
<TextView <TextView