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.
37 lines
825 B
37 lines
825 B
1 month ago
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
||
|
part 'user_bill.g.dart';
|
||
|
|
||
|
@JsonSerializable(explicitToJson: true)
|
||
|
class UserBill {
|
||
|
String? id = '';
|
||
|
String? createTime = '';
|
||
|
String? createUser = '';
|
||
|
String? updateTime = '';
|
||
|
String? updateUser = '';
|
||
|
String? mid = '';
|
||
|
String? linkId = '';
|
||
|
int? pm = 0;
|
||
|
String? title = '';
|
||
|
String? category = '';
|
||
|
String? type = '';
|
||
|
String? number = '';
|
||
|
String? realNumber = '';
|
||
|
String? activityMoney = '';
|
||
|
String? surplusActivityMoney = '';
|
||
|
String? greenMoney = '';
|
||
|
String? surplusGreenMoney = '';
|
||
|
String? balance = '';
|
||
|
String? mark = '';
|
||
|
bool? status = false;
|
||
|
bool? isDeleted = false;
|
||
|
String? name = '';
|
||
|
|
||
|
UserBill();
|
||
|
|
||
|
factory UserBill.fromJson(Map<String, dynamic> json) => _$UserBillFromJson(json);
|
||
|
|
||
|
Map<String, dynamic> toJson() => _$UserBillToJson(this);
|
||
|
|
||
|
|
||
|
}
|