Files
huangguo_android/lib/hj_model/splash/banner_jump.dart
T
2026-09-15 15:44:13 +07:00

24 lines
577 B
Dart

class BannerJumpEntity {
String? id;
int? position;
String? url;
String? title;
String? startAt;
String? banner;
String? endAt;
int? countdownType;
BannerJumpEntity({this.title, this.id, this.position, this.url, this.startAt, this.banner, this.endAt, this.countdownType});
BannerJumpEntity.fromJson(dynamic json) {
id = json['id'];
position = json['position'];
url = json['url'];
title = json['title'];
startAt = json['startAt'];
endAt = json['endAt'];
banner = json['banner'];
countdownType = json['countdownType'];
}
}