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.
20 lines
655 B
20 lines
655 B
4 years ago
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
|
||
|
part of 'news_detail_model.dart';
|
||
|
|
||
|
// **************************************************************************
|
||
|
// JsonSerializableGenerator
|
||
|
// **************************************************************************
|
||
|
|
||
|
NewsDetailModel _$NewsDetailModelFromJson(Map<String, dynamic> json) {
|
||
|
return NewsDetailModel(
|
||
|
id: json['id'] as int,
|
||
|
code: json['code'] as String,
|
||
|
title: json['title'] as String,
|
||
|
content: json['content'] as String,
|
||
|
newsCategoryName: json['newsCategoryName'] as String,
|
||
|
createName: json['createName'] as String,
|
||
|
createDate: json['createDate'] as String,
|
||
|
);
|
||
|
}
|