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
582 B
27 lines
582 B
1 month ago
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
||
|
part 'headlines.g.dart';
|
||
|
|
||
|
@JsonSerializable(explicitToJson: true)
|
||
|
class Headlines {
|
||
|
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 = '';
|
||
|
|
||
|
Headlines();
|
||
|
|
||
|
factory Headlines.fromJson(Map<String, dynamic> json) => _$HeadlinesFromJson(json);
|
||
|
|
||
|
Map<String, dynamic> toJson() => _$HeadlinesToJson(this);
|
||
|
|
||
|
|
||
|
}
|