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.
 
 
 
 
 
 

82 lines
1.9 KiB

/// id : "1413347011645669376"
/// createTime : "2021-07-09 11:59:21"
/// createUser : "1406879717390286848"
/// updateTime : "2021-07-09 11:59:21"
/// updateUser : "1406879717390286848"
/// mid : "1406879717390286848"
/// linkId : "0"
/// pm : 1
/// title : "bill_title_point"
/// category : "bill_cate_point_get"
/// type : "bill_type_point_signin"
/// number : "10.00"
/// balance : "30.00"
/// mark : ""
/// status : true
/// isDeleted : false
/// name : "签到"
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? balance;
String? mark;
bool? status;
bool? isDeleted;
String? name;
UserBill.fromJson(dynamic json) {
id = json["id"];
createTime = json["createTime"];
createUser = json["createUser"];
updateTime = json["updateTime"];
updateUser = json["updateUser"];
mid = json["mid"];
linkId = json["linkId"];
pm = json["pm"];
title = json["title"];
category = json["category"];
type = json["type"];
number = json["number"];
balance = json["balance"];
mark = json["mark"];
status = json["status"];
isDeleted = json["isDeleted"];
name = json["name"];
}
Map<String, dynamic> toJson() {
var map = <String, dynamic>{};
map["id"] = id;
map["createTime"] = createTime;
map["createUser"] = createUser;
map["updateTime"] = updateTime;
map["updateUser"] = updateUser;
map["mid"] = mid;
map["linkId"] = linkId;
map["pm"] = pm;
map["title"] = title;
map["category"] = category;
map["type"] = type;
map["number"] = number;
map["balance"] = balance;
map["mark"] = mark;
map["status"] = status;
map["isDeleted"] = isDeleted;
map["name"] = name;
return map;
}
}