// GENERATED CODE - DO NOT MODIFY BY HAND part of 'article.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** Article _$ArticleFromJson(Map json) => Article() ..id = json['id'] as String? ..createTime = json['createTime'] as String? ..createUser = json['createUser'] as String? ..updateTime = json['updateTime'] as String? ..updateUser = json['updateUser'] as String? ..storeId = json['storeId'] as String? ..categoryId = json['categoryId'] as String? ..mainTitle = json['mainTitle'] as String? ..viceTitle = json['viceTitle'] ..content = json['content'] as String? ..coverImg = json['coverImg'] as String? ..author = json['author'] ..type = (json['type'] as num?)?.toInt() ..likes = (json['likes'] as num?)?.toInt() ..viewers = (json['viewers'] as num?)?.toInt() ..startTime = json['startTime'] as String? ..endTime = json['endTime'] as String? ..isHot = json['isHot'] as bool? ..state = (json['state'] as num?)?.toInt() ..location = json['location'] as String? ..longitude = json['longitude'] as String? ..latitude = json['latitude'] as String? ..remark = json['remark'] as String? ..isDelete = (json['isDelete'] as num?)?.toInt() ..tenantCode = json['tenantCode'] as String? ..storeName = json['storeName'] ..liked = json['liked'] as bool? ..followed = json['followed'] as bool? ..comments = json['comments'] ..authorName = json['authorName'] as String? ..authorHeadImg = json['authorHeadImg'] as String?; Map _$ArticleToJson(Article instance) => { 'id': instance.id, 'createTime': instance.createTime, 'createUser': instance.createUser, 'updateTime': instance.updateTime, 'updateUser': instance.updateUser, 'storeId': instance.storeId, 'categoryId': instance.categoryId, 'mainTitle': instance.mainTitle, 'viceTitle': instance.viceTitle, 'content': instance.content, 'coverImg': instance.coverImg, 'author': instance.author, 'type': instance.type, 'likes': instance.likes, 'viewers': instance.viewers, 'startTime': instance.startTime, 'endTime': instance.endTime, 'isHot': instance.isHot, 'state': instance.state, 'location': instance.location, 'longitude': instance.longitude, 'latitude': instance.latitude, 'remark': instance.remark, 'isDelete': instance.isDelete, 'tenantCode': instance.tenantCode, 'storeName': instance.storeName, 'liked': instance.liked, 'followed': instance.followed, 'comments': instance.comments, 'authorName': instance.authorName, 'authorHeadImg': instance.authorHeadImg, };