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.
33 lines
752 B
33 lines
752 B
1 month ago
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
||
|
part 'service_bug.g.dart';
|
||
|
|
||
|
@JsonSerializable(explicitToJson: true)
|
||
|
class ServiceBug {
|
||
|
String? id = '';
|
||
|
String? createTime = '';
|
||
|
String? createUser = '';
|
||
|
String? updateTime = '';
|
||
|
String? updateUser = '';
|
||
|
String? tenantId = '';
|
||
|
String? tenantCode = '';
|
||
|
String? packageId = '';
|
||
|
String? oldPackageId = '';
|
||
|
String? packagePrice = '';
|
||
|
int? packageNum = 0;
|
||
|
int? packageDiscount = 0;
|
||
|
String? expirationTime = '';
|
||
|
dynamic upgradeTime;
|
||
|
int? status = 0;
|
||
|
int? payChannel = 0;
|
||
|
int? isDelete = 0;
|
||
|
String? packageName = '';
|
||
|
|
||
|
ServiceBug();
|
||
|
|
||
|
factory ServiceBug.fromJson(Map<String, dynamic> json) => _$ServiceBugFromJson(json);
|
||
|
|
||
|
Map<String, dynamic> toJson() => _$ServiceBugToJson(this);
|
||
|
|
||
|
|
||
|
}
|