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.
35 lines
831 B
35 lines
831 B
import 'package:huixiang/data/author.dart'; |
|
import 'package:huixiang/generated/json/base/json_field.dart'; |
|
import 'package:huixiang/generated/json/course.g.dart'; |
|
import 'dart:convert'; |
|
export 'package:huixiang/generated/json/course.g.dart'; |
|
|
|
@JsonSerializable() |
|
class Course { |
|
String? id = ''; |
|
String? createTime = ''; |
|
String? createUser = ''; |
|
String? updateTime = ''; |
|
String? updateUser = ''; |
|
String? categoryId = ''; |
|
String? subject = ''; |
|
List<String>? tags = []; |
|
String? coverImg = ''; |
|
Author? author; |
|
String? introduce = ''; |
|
int? viewers = 0; |
|
int? likes = 0; |
|
bool? state = false; |
|
int? isDelete = 0; |
|
|
|
Course(); |
|
|
|
factory Course.fromJson(Map<String, dynamic> json) => $CourseFromJson(json); |
|
|
|
Map<String, dynamic> toJson() => $CourseToJson(this); |
|
|
|
@override |
|
String toString() { |
|
return jsonEncode(this); |
|
} |
|
}
|
|
|