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.
34 lines
787 B
34 lines
787 B
1 month ago
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
||
|
part 'launch_join_act.g.dart';
|
||
|
|
||
|
@JsonSerializable(explicitToJson: true)
|
||
|
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);
|
||
|
|
||
|
|
||
|
}
|