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.
25 lines
562 B
25 lines
562 B
10 months ago
|
import 'package:huixiang/generated/json/base/json_field.dart';
|
||
|
import 'package:huixiang/generated/json/task.g.dart';
|
||
|
|
||
|
@JsonSerializable()
|
||
|
class Task {
|
||
|
Task();
|
||
|
String? aspects;
|
||
|
int? complateNum;
|
||
|
int? conplateNum;
|
||
|
String? createTime;
|
||
|
String? createUser;
|
||
|
String? id;
|
||
|
int? limitDay;
|
||
|
String? name;
|
||
|
int? rewardType;
|
||
|
String? rewardValue;
|
||
|
bool? status;
|
||
|
String? type;
|
||
|
String? updateTime;
|
||
|
String? updateUser;
|
||
|
|
||
|
factory Task.fromJson(Map<String, dynamic> json) => $TaskFromJson(json);
|
||
|
|
||
|
Map<String, dynamic> toJson() => $TaskToJson(this);
|
||
|
}
|