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
700 B
33 lines
700 B
import 'package:json_annotation/json_annotation.dart'; |
|
|
|
part 'additional_comment.g.dart'; |
|
|
|
@JsonSerializable(explicitToJson: true) |
|
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); |
|
} |
|
|
|
|