You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
720 B
33 lines
720 B
|
|
import 'package:huixiang/generated/json/additional_comment.g.dart'; |
|
import 'package:huixiang/generated/json/base/json_field.dart'; |
|
|
|
@JsonSerializable() |
|
class AdditionalComment { |
|
AdditionalComment(); |
|
|
|
int? bizType; |
|
String? commentImgs; |
|
bool? commentImgsFlag; |
|
int? commentStar; |
|
String? commentText; |
|
int? descStar; |
|
bool? hideFlag; |
|
int? id; |
|
bool? isDelete; |
|
int? likeNum; |
|
int? logisticsStar; |
|
int? mid; |
|
int? orderProductId; |
|
int? parentId; |
|
int? productId; |
|
bool? sensitiveFlag; |
|
int? serviceStar; |
|
int? storeId; |
|
|
|
factory AdditionalComment.fromJson(Map<String, dynamic> json) => |
|
$AdditionalCommentFromJson(json); |
|
|
|
Map<String, dynamic> toJson() => $AdditionalCommentToJson(this); |
|
} |
|
|
|
|