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.
27 lines
625 B
27 lines
625 B
1 month ago
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
||
|
part 'headlines_details.g.dart';
|
||
|
|
||
|
@JsonSerializable(explicitToJson: true)
|
||
|
class HeadlinesDetails {
|
||
|
String? id = '';
|
||
|
String? createTime = '';
|
||
|
String? createUser = '';
|
||
|
String? updateTime = '';
|
||
|
String? updateUser = '';
|
||
|
String? name = '';
|
||
|
String? introduce = '';
|
||
|
String? coverImg = '';
|
||
|
String? bannerImg = '';
|
||
|
int? sort = 0;
|
||
|
int? isDelete = 0;
|
||
|
String? tenantCode = '';
|
||
|
|
||
|
HeadlinesDetails();
|
||
|
|
||
|
factory HeadlinesDetails.fromJson(Map<String, dynamic> json) => _$HeadlinesDetailsFromJson(json);
|
||
|
|
||
|
Map<String, dynamic> toJson() => _$HeadlinesDetailsToJson(this);
|
||
|
|
||
|
|
||
|
}
|