fix save reply

opt profile page

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-07-11 23:36:33 +08:00
parent c346d586a5
commit 44ba554e0e
23 changed files with 64 additions and 57 deletions

View File

@@ -6,7 +6,7 @@ class CntInfo {
int? share;
int? reply;
int? danmaku;
int? coin;
num? coin;
int? vt;
int? playSwitch;
String? viewText1;
@@ -33,7 +33,7 @@ class CntInfo {
share: json['share'] as int?,
reply: json['reply'] as int?,
danmaku: json['danmaku'] as int?,
coin: json['coin'] as int?,
coin: json['coin'] as num?,
vt: json['vt'] as int?,
playSwitch: json['play_switch'] as int?,
viewText1: json['view_text_1'] as String?,

View File

@@ -3,7 +3,7 @@ class Stat {
int? view;
int? danmaku;
int? reply;
int? coin;
num? coin;
int? seriesFollow;
int? seriesView;
int? likes;
@@ -26,7 +26,7 @@ class Stat {
view: json['view'] as int?,
danmaku: json['danmaku'] as int?,
reply: json['reply'] as int?,
coin: json['coin'] as int?,
coin: json['coin'] as num?,
seriesFollow: json['series_follow'] as int?,
seriesView: json['series_view'] as int?,
likes: json['likes'] as int?,