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.
38 lines
955 B
38 lines
955 B
import 'package:huixiang/generated/json/base/json_field.dart'; |
|
import 'package:huixiang/generated/json/launch_join_act.g.dart'; |
|
import 'dart:convert'; |
|
export 'package:huixiang/generated/json/launch_join_act.g.dart'; |
|
|
|
@JsonSerializable() |
|
class LaunchJoinAct { |
|
String? id = ''; |
|
String? createTime = ''; |
|
String? createUser = ''; |
|
String? updateTime = ''; |
|
String? updateUser = ''; |
|
String? storeId = ''; |
|
int? type = 0; |
|
String? actTemplateId = ''; |
|
String? actTimeId = ''; |
|
String? actRecordId = ''; |
|
String? mid = ''; |
|
String? orderId = ''; |
|
bool? isLeader = false; |
|
String? memberAvatar = ''; |
|
String? memberNickname = ''; |
|
String? productId = ''; |
|
String? actPrice = ''; |
|
bool? state = false; |
|
dynamic isDelete; |
|
|
|
LaunchJoinAct(); |
|
|
|
factory LaunchJoinAct.fromJson(Map<String, dynamic> json) => $LaunchJoinActFromJson(json); |
|
|
|
Map<String, dynamic> toJson() => $LaunchJoinActToJson(this); |
|
|
|
@override |
|
String toString() { |
|
return jsonEncode(this); |
|
} |
|
} |