|
- import 'package:json_annotation/json_annotation.dart';
-
- part 'HistoryAction.g.dart';
-
- @JsonSerializable()
- class HistoryAction {
- HistoryAction();
-
- num id;
- num ageDay;
- num cropId;
- String executeDate;
- String description;
- num activityTypeId;
- String activityTypeName;
-
- factory HistoryAction.fromJson(Map<String,dynamic> json) => _$HistoryActionFromJson(json);
- Map<String, dynamic> toJson() => _$HistoryActionToJson(this);
- }
|