19 lines
665 B
19 lines
665 B
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'news_detail_model.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
NewsDetailModel _$NewsDetailModelFromJson(Map<String, dynamic> json) =>
|
|
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,
|
|
);
|