property_news_entity.g.dart 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. import 'package:domain/generated/json/base/json_convert_content.dart';
  2. import 'package:domain/entity/property_news_entity.dart';
  3. PropertyNewsEntity $PropertyNewsEntityFromJson(Map<String, dynamic> json) {
  4. final PropertyNewsEntity propertyNewsEntity = PropertyNewsEntity();
  5. final int? count = jsonConvert.convert<int>(json['count']);
  6. if (count != null) {
  7. propertyNewsEntity.count = count;
  8. }
  9. final int? page = jsonConvert.convert<int>(json['page']);
  10. if (page != null) {
  11. propertyNewsEntity.page = page;
  12. }
  13. final int? limit = jsonConvert.convert<int>(json['limit']);
  14. if (limit != null) {
  15. propertyNewsEntity.limit = limit;
  16. }
  17. final int? countPage = jsonConvert.convert<int>(json['count_page']);
  18. if (countPage != null) {
  19. propertyNewsEntity.countPage = countPage;
  20. }
  21. final List<PropertyNewsList>? list = (json['list'] as List<dynamic>?)?.map(
  22. (e) => jsonConvert.convert<PropertyNewsList>(e) as PropertyNewsList).toList();
  23. if (list != null) {
  24. propertyNewsEntity.list = list;
  25. }
  26. return propertyNewsEntity;
  27. }
  28. Map<String, dynamic> $PropertyNewsEntityToJson(PropertyNewsEntity entity) {
  29. final Map<String, dynamic> data = <String, dynamic>{};
  30. data['count'] = entity.count;
  31. data['page'] = entity.page;
  32. data['limit'] = entity.limit;
  33. data['count_page'] = entity.countPage;
  34. data['list'] = entity.list?.map((v) => v.toJson()).toList();
  35. return data;
  36. }
  37. extension PropertyNewsEntityExtension on PropertyNewsEntity {
  38. PropertyNewsEntity copyWith({
  39. int? count,
  40. int? page,
  41. int? limit,
  42. int? countPage,
  43. List<PropertyNewsList>? list,
  44. }) {
  45. return PropertyNewsEntity()
  46. ..count = count ?? this.count
  47. ..page = page ?? this.page
  48. ..limit = limit ?? this.limit
  49. ..countPage = countPage ?? this.countPage
  50. ..list = list ?? this.list;
  51. }
  52. }
  53. PropertyNewsList $PropertyNewsListFromJson(Map<String, dynamic> json) {
  54. final PropertyNewsList propertyNewsList = PropertyNewsList();
  55. final int? id = jsonConvert.convert<int>(json['id']);
  56. if (id != null) {
  57. propertyNewsList.id = id;
  58. }
  59. final String? title = jsonConvert.convert<String>(json['title']);
  60. if (title != null) {
  61. propertyNewsList.title = title;
  62. }
  63. final String? coverImage = jsonConvert.convert<String>(json['cover_image']);
  64. if (coverImage != null) {
  65. propertyNewsList.coverImage = coverImage;
  66. }
  67. final String? content = jsonConvert.convert<String>(json['content']);
  68. if (content != null) {
  69. propertyNewsList.content = content;
  70. }
  71. final int? likesCount = jsonConvert.convert<int>(json['likes_count']);
  72. if (likesCount != null) {
  73. propertyNewsList.likesCount = likesCount;
  74. }
  75. final bool? liked = jsonConvert.convert<bool>(json['liked']);
  76. if (liked != null) {
  77. propertyNewsList.liked = liked;
  78. }
  79. final String? createdAt = jsonConvert.convert<String>(json['created_at']);
  80. if (createdAt != null) {
  81. propertyNewsList.createdAt = createdAt;
  82. }
  83. return propertyNewsList;
  84. }
  85. Map<String, dynamic> $PropertyNewsListToJson(PropertyNewsList entity) {
  86. final Map<String, dynamic> data = <String, dynamic>{};
  87. data['id'] = entity.id;
  88. data['title'] = entity.title;
  89. data['cover_image'] = entity.coverImage;
  90. data['content'] = entity.content;
  91. data['likes_count'] = entity.likesCount;
  92. data['liked'] = entity.liked;
  93. data['created_at'] = entity.createdAt;
  94. return data;
  95. }
  96. extension PropertyNewsListExtension on PropertyNewsList {
  97. PropertyNewsList copyWith({
  98. int? id,
  99. String? title,
  100. String? coverImage,
  101. String? content,
  102. int? likesCount,
  103. bool? liked,
  104. String? createdAt,
  105. }) {
  106. return PropertyNewsList()
  107. ..id = id ?? this.id
  108. ..title = title ?? this.title
  109. ..coverImage = coverImage ?? this.coverImage
  110. ..content = content ?? this.content
  111. ..likesCount = likesCount ?? this.likesCount
  112. ..liked = liked ?? this.liked
  113. ..createdAt = createdAt ?? this.createdAt;
  114. }
  115. }