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.
40 lines
908 B
40 lines
908 B
import 'package:huixiang/generated/json/base/json_field.dart'; |
|
import 'package:huixiang/generated/json/act_record.g.dart'; |
|
import 'dart:convert'; |
|
export 'package:huixiang/generated/json/act_record.g.dart'; |
|
|
|
@JsonSerializable() |
|
class ActRecord { |
|
String? id = ''; |
|
String? createTime = ''; |
|
String? createUser = ''; |
|
String? updateTime = ''; |
|
String? updateUser = ''; |
|
String? storeId = ''; |
|
int? type = 0; |
|
String? actTemplateId = ''; |
|
String? actTimeId = ''; |
|
String? actProductId = ''; |
|
String? mid = ''; |
|
int? joinNum = 0; |
|
String? startTime = ''; |
|
String? endTime = ''; |
|
int? state = 0; |
|
int? isDelete = 0; |
|
|
|
int? tempDay = 0; |
|
int? tempHour = 0; |
|
int? tempM = 0; |
|
int? tempS = 0; |
|
|
|
ActRecord(); |
|
|
|
factory ActRecord.fromJson(Map<String, dynamic> json) => $ActRecordFromJson(json); |
|
|
|
Map<String, dynamic> toJson() => $ActRecordToJson(this); |
|
|
|
@override |
|
String toString() { |
|
return jsonEncode(this); |
|
} |
|
} |