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.
 
 
 
 
 
 

54 lines
1.3 KiB

/// createTime : ""
/// createUser : 0
/// id : 0
/// rankContent : ""
/// rankImg : ""
/// rankName : ""
/// rankOrigin : 0
/// status : true
/// updateTime : ""
/// updateUser : 0
class Rank {
String? createTime;
String? createUser;
String? id;
String? rankContent;
String? rankImg;
String? rankName;
int? rankOrigin;
bool? status;
String? updateTime;
String? updateUser;
Rank();
Rank.fromJson(dynamic json) {
this.createTime = json["createTime"];
this.createUser = json["createUser"];
this.id = json["id"];
this.rankContent = json["rankContent"];
this.rankImg = json["rankImg"];
this.rankName = json["rankName"];
this.rankOrigin = json["rankOrigin"];
this.status = json["status"];
this.updateTime = json["updateTime"];
this.updateUser = json["updateUser"];
}
Map<String, dynamic> toJson() {
var map = <String, dynamic>{};
map["createTime"] = this.createTime;
map["createUser"] = this.createUser;
map["id"] = this.id;
map["rankContent"] = this.rankContent;
map["rankImg"] = this.rankImg;
map["rankName"] = this.rankName;
map["rankOrigin"] = this.rankOrigin;
map["status"] = this.status;
map["updateTime"] = this.updateTime;
map["updateUser"] = this.updateUser;
return map;
}
}