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.
28 lines
575 B
28 lines
575 B
import 'package:json_annotation/json_annotation.dart'; |
|
|
|
part 'sign_in.g.dart'; |
|
|
|
@JsonSerializable(explicitToJson: true) |
|
class SignIn { |
|
SignIn(); |
|
String? balance; |
|
String? category; |
|
String? createTime; |
|
String? createUser; |
|
String? id; |
|
bool? isDeleted; |
|
String? linkId; |
|
String? mark; |
|
String? mid; |
|
String? number; |
|
int? pm; |
|
bool? status; |
|
String? title; |
|
String? type; |
|
String? updateTime; |
|
String? updateUser; |
|
|
|
factory SignIn.fromJson(Map<String, dynamic> json) => _$SignInFromJson(json); |
|
|
|
Map<String, dynamic> toJson() => _$SignInToJson(this); |
|
} |