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.

76 lines
1.7 KiB

2 years ago
import 'package:json_annotation/json_annotation.dart';
import 'package:equatable/equatable.dart';
import 'package:project_telephony/ui/user/content_details_page.dart';
2 years ago
part 'user_info_model.g.dart';
@JsonSerializable()
class UserInfoModel extends Equatable {
final int id;
final String name;
final String phone;
final int isVip;
final String tag;
2 years ago
final int status;
final int start;
final int end;
final List<Content>? contentRef;
final List<Content>? contentCon;
2 years ago
factory UserInfoModel.fromJson(Map<String, dynamic> json) =>
_$UserInfoModelFromJson(json);
Map<String, dynamic> toJson() => _$UserInfoModelToJson(this);
static UserInfoModel get fail => const UserInfoModel(
id: 0,
name: '',
phone: '',
isVip: 0,
tag: '',
2 years ago
status: 0,
start: 0,
end: 0,
contentCon: [],
contentRef: [],
2 years ago
);
const UserInfoModel({
required this.id,
required this.name,
required this.phone,
required this.isVip,
required this.tag,
required this.status,
required this.start,
required this.end,
required this.contentCon,
required this.contentRef,
});
2 years ago
@override
List<Object?> get props =>
[id, name, phone, isVip, tag, status, start, end, contentCon, contentRef];
2 years ago
}
@JsonSerializable()
class Content extends Equatable {
final int id;
final String content;
final int isChecked;
2 years ago
const Content({
required this.id,
required this.content,
required this.isChecked,
2 years ago
});
factory Content.fromJson(Map<String, dynamic> json) =>
_$ContentFromJson(json);
2 years ago
Map<String, dynamic> toJson() => _$ContentToJson(this);
2 years ago
@override
List<Object?> get props => [id, content, isChecked];
2 years ago
}