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.
 
 
 
 
 
 

36 lines
745 B

import 'package:json_annotation/json_annotation.dart';
part 'act_record.g.dart';
@JsonSerializable(explicitToJson: true)
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);
}