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.
48 lines
2.0 KiB
48 lines
2.0 KiB
// GENERATED CODE - DO NOT MODIFY BY HAND |
|
|
|
part of 'comment.dart'; |
|
|
|
// ************************************************************************** |
|
// JsonSerializableGenerator |
|
// ************************************************************************** |
|
|
|
Comment _$CommentFromJson(Map<String, dynamic> json) => Comment() |
|
..bizType = (json['bizType'] as num?)?.toInt() |
|
..commentImgs = json['commentImgs'] as String? |
|
..commentImgsFlag = json['commentImgsFlag'] as bool? |
|
..commentStar = (json['commentStar'] as num?)?.toInt() |
|
..commentText = json['commentText'] as String? |
|
..descStar = (json['descStar'] as num?)?.toInt() |
|
..hideFlag = json['hideFlag'] as bool? |
|
..id = (json['id'] as num?)?.toInt() |
|
..isDelete = json['isDelete'] as bool? |
|
..likeNum = (json['likeNum'] as num?)?.toInt() |
|
..logisticsStar = (json['logisticsStar'] as num?)?.toInt() |
|
..mid = (json['mid'] as num?)?.toInt() |
|
..orderProductId = (json['orderProductId'] as num?)?.toInt() |
|
..parentId = (json['parentId'] as num?)?.toInt() |
|
..productId = (json['productId'] as num?)?.toInt() |
|
..sensitiveFlag = json['sensitiveFlag'] as bool? |
|
..serviceStar = (json['serviceStar'] as num?)?.toInt() |
|
..storeId = (json['storeId'] as num?)?.toInt(); |
|
|
|
Map<String, dynamic> _$CommentToJson(Comment instance) => <String, dynamic>{ |
|
'bizType': instance.bizType, |
|
'commentImgs': instance.commentImgs, |
|
'commentImgsFlag': instance.commentImgsFlag, |
|
'commentStar': instance.commentStar, |
|
'commentText': instance.commentText, |
|
'descStar': instance.descStar, |
|
'hideFlag': instance.hideFlag, |
|
'id': instance.id, |
|
'isDelete': instance.isDelete, |
|
'likeNum': instance.likeNum, |
|
'logisticsStar': instance.logisticsStar, |
|
'mid': instance.mid, |
|
'orderProductId': instance.orderProductId, |
|
'parentId': instance.parentId, |
|
'productId': instance.productId, |
|
'sensitiveFlag': instance.sensitiveFlag, |
|
'serviceStar': instance.serviceStar, |
|
'storeId': instance.storeId, |
|
};
|
|
|